// JavaScript Document


<!--
function FDK_newWindow(url,name,width,height,status,directories,location,toolbar,menubar,scrollbars,resizable) 
{
  options=((width!="")?"width="+width:"")+((height!="")?",height="+height:"")+",status="+((status=="1")?"yes":"no")+",directories="+((directories=="1")?"yes":"no")+",location="+((location=="1")?"yes":"no")+",toolbar="+((toolbar=="1")?"yes":"no")+",menubar="+((menubar=="1")?"yes":"no")+",scrollbars="+((scrollbars=="1")?"yes":"no")+",resizable="+((resizable=="1")?"yes":"no");
  window.open(url,name,options);
}
var myWin = "";


	function myClose()

	{

	myWin.close(); // then close the window

	
} // end function

//checks to see if a browser window is open, if it is, it is closed and another is re-opened with the right stuff.
function myOpen()

{

/* note that if we defined the variable inside the function, it would get reinitialized each time, therefore it would not have a value, we want to use a script-level variable so the window's definition and assignment lingers through multiple calls to the function*/

if (myWin) // if the window exists

	{

	myWin.close(); // then close the window

	}
} // end function

//re-sizes and moves window into location on monitor
function myLoad()
{
self.resizeTo(screen.availWidth*.9,screen.availHeight*.9,screenx=20,screeny=20,top=20,left=20);
}


//-->
