<!--

var arOptions = new Array();

arOptions["new"] = "LOCATION=YES,TOOLBAR=YES,MENUBAR=YES,STATUS=YES,RESIZABLE=YES,SCROLLBARS=YES,HEIGHT=650,WIDTH=850,TOP=100,LEFT=50";
arOptions["window"] = "LOCATION=YES,TOOLBAR=YES,MENUBAR=YES,STATUS=YES,RESIZABLE=YES,SCROLLBARS=YES,TOP=100,LEFT=50";
arOptions["form"] = "LOCATION=NO,TOOLBAR=NO,MENUBAR=NO,STATUS=YES,RESIZABLE=NO,SCROLLBARS=YES,TOP=100,LEFT=50";
arOptions["resizable"] = "LOCATION=NO,TOOLBAR=NO,MENUBAR=NO,STATUS=YES,RESIZABLE=YES,SCROLLBARS=YES,TOP=100,LEFT=50";
arOptions[""];

function OpenWindow(sURL, sIndex, iExtendedOptions)
{
	if( sIndex == null ) { sIndex = ""; }
	if( iExtendedOptions == null ) { iExtendedOptions = ""; }
	if( iExtendedOptions != "" && arOptions[sIndex] != "" ) { iExtendedOptions = "," + iExtendedOptions; }
	var oWindow = window.open(sURL, "", arOptions[sIndex] + iExtendedOptions);
}

function GetNewInfo()
{
   location.reload(true);          
}
//-->