  <!--- Code to open offsite windows
 
 
var newwindow = '';
 LeftPosition =  0;
 TopPosition =  0;
function launchWindow1(url)
{
	if (newwindow.location && !newwindow.closed)
	{
		newwindow.location.href = url;
	}
	else
	{
		newwindow=window.open(url,"myRemote1","top="+TopPosition+",left="+LeftPosition+",height=500,width=800,alwaysLowered=0,alwaysRaised=0,channelmode=0,dependent=0,directories=0,fullscreen=0,hotkeys=1,location=1,menubar=1,resizable=1,scrollbars=1,status=1,titlebar=1,toolbar=1,z-lock=0", "mainWindow");
		if (!newwindow.opener) newwindow.opener = self;
	}
	if (window.focus) {newwindow.focus()}
}


 
 //--->
