
<!-- 


//////////////////////////////////////////////////////////////////
///////////////////[ user define functions ]/////////////////////
/////////////////////////////////////////////////////////////////


function openpage(url)
{
window.document.location.href = url
}

//////////////////////////////////////////////////////////////////
///////////////////[ next user defined fuction ]//////////////////
/////////////////////////////////////////////////////////////////

function openwindow(mypage)
{
var myname="onstarr";
var settings="toolbar=1,menubar=1,minmaxbuttons=1,status=1,scrollbars=1,resizable=1,height=300,width=600";
window.open(mypage,myname,settings);

}





//////////////////////////////////////////////////////////////////
///////////////////[ next user defined fuction ]//////////////////
/////////////////////////////////////////////////////////////////

function openpopup(mypage)
{
var myname="popup";
var settings="toolbar=0,menubar=0,minmaxbuttons=1,status=1,scrollbars=1,resizable=1,left=0,top=0,width=screen.availWidth,height=screen.availHeight";
window.open(mypage,myname,settings);
}






//////////////////////////////////////////////////////////////////
///////////////////[ next user defined fuction ]//////////////////
/////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////
//////[*********************************************]////////
//////[            Internet Explore Options         ]////////
//////[ Not Supported: ScreenX, ScreenY,            ]////////
//////[ Not Supported: OuterWidth, OuterHeight      ]////////
//////[ Not Supported: innerWidth, innerHeight      ]////////
//////[                                             ]////////
//////[ Supported: location, directories, satus,    ]////////
//////[ Supported: scrollbars, left, top, resizable ]////////
//////[ Supported: fullscreen                       ]////////
//////[*********************************************]////////
/////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////
//////////////////[ global variables        ]////////////////
//////////////////////////////////////////////////////////////

var ieremfeature ="left=0,top=0,fullscreen";
var ieaddfeature ="toolbar=1,location=1,directories=1,status=1,menubar=1,scrollbars=1,left=0,top=0,resizable=1";



function fullwindow(url,num)
{// start of wocwindow udf


if (num == 0)// no change
{
window.document.location.href = url
}


if (num == 1)
{ // start of num == 1
window.open(url,'', ieremfeature);   //full window - remove object properties
} // end of num ==1


if(num == 2)
{ // start of num == 2
window.open(url,'', ieaddfeature);  //normal windows - all object properties
} // end of num ==2



}// end of fullwindow udf





//////////////////////////////////////////////////////////////
///////////[ next user defined functions ]////////////////////
//////////////////////////////////////////////////////////////



function loadpicture(image) // MSIE compatible
{
document.myimage.src = image
}




//  -->