<!--
function popUp(url) {
sealWin=window.open(url,"win",'toolbar=0,location=0,directories=0,status=1,menubar=1,scrollbars=1,resizable=1,width=500,height=450');
self.name = "mainWin";
}

function newWindow(popup,width,height) 
{
	leftpos = 0;
	if (screen) 
	{ 
		leftpos = screen.width - 375 ;     //Makes sure the browser can handle this request
	}
		popTallWindow = window.open(popup, 'popwin', 'width='+width+',height='+height+',toolbar=yes,scrollbars=yes,resizable=yes,location=yes,directories=yes,status=yes,menubar=yes,copyhistory=yes');
		popTallWindow.focus();
}
//-->