/*Opens windows of specified size.  Call function windowOpener(url)*/

document.write("<script language=\"JavaScript\">");
document.write("INSERT = null;");
document.write("function windowOpener(openThis)");
document.write("{");	

if(navigator.appName != "Microsoft Internet Explorer")
{
	document.write("var relativeHeight = 0.40;");
	document.write("var relativeWidth = 0.75;");
	document.write("var hOffset = -100; ");
	document.write("var vOffset = -20; ");
	document.write("var fixedwidth = 700;");
	document.write("var fixedheight = 450;");
	document.write("if (INSERT != null && INSERT.closed==false) { INSERT.close();}");
	document.write("INSERT = window.open(openThis, \"INSERT\", \"innerHeight=\" + fixedheight + \", innerWidth =\" + fixedwidth + \",outerHeight=\" + (fixedheight+10) + \",outerWidth=\" + (fixedwidth+10) + \",left=\" + (parseInt(screen.width-fixedwidth)/2) + \",top=\" + (parseInt(screen.height-fixedheight + vOffset)) + \",toolbar=yes,locationbar=yes,personalbar=yes,statusbar=yes,resizable=yes,scrollbars=yes,alwaysRaised=yes\");");
	document.write("INSERT.statusbar.visible = true;");
	document.write("INSERT.locationbar.visible = true;");
	//document.write("INSERT.resizeTo(fixedwidth,fixedheight);");
	
	
	document.write("} ");
	
	
}
	
if(navigator.appName == "Microsoft Internet Explorer")
{
	document.write("var relativeHeight = 0.60;");
	document.write("var relativeWidth = 0.90;");
	document.write("var hOffset = -20; ");
	document.write("var vOffset = -125; ");
	document.write("var fixedheight = 450;");
	document.write("var fixedwidth = 700;");
	
	document.write("try { INSERT.close();");
	
	document.write("INSERT = window.open(openThis, \"INSERT\", \"height=\" + fixedheight + \", width =\" + fixedwidth + \",left=\" + (parseInt(screen.width-fixedwidth)/2) + \",top=\" + (parseInt(screen.height-fixedheight + vOffset)) + \",screenX=\" + (parseInt(screen.width-(fixedwidth)+hOffset)) + \",screenY=\" + (parseInt(screen.height-(fixedheight))+vOffset) + \",toolbar=yes,resizable=yes,locationbar=yes,personalbar=yes,statusbar=yes,scrollbars=yes,alwaysRaised=yes\");");
	document.write("}");
	document.write("catch (exception) {");
	
	document.write("INSERT = window.open(openThis, \"INSERT\", \"height=\" + fixedheight + \", width =\" + fixedwidth + \",left=\" + (parseInt(screen.width-fixedwidth)/2) + \",top=\" + (parseInt(screen.height-fixedheight + vOffset)) + \",screenX=\" + (parseInt(screen.width-(fixedwidth)+hOffset)) + \",screenY=\" + (parseInt(screen.height-(fixedheight))+vOffset) + \",toolbar=yes,resizable=yes,locationbar=yes,personalbar=yes,statusbar=yes,scrollbars=yes,alwaysRaised=yes\");");
	document.write("}");
	document.write("} ");
} 
	


document.write("</sc");
document.write("ript>");

