function openWindow(URL,windowName,windowProperties){
			winWidth = 800;
			winHeight= 530;
			xposition = (screen.width - winWidth) / 2; 
			yposition = (screen.height - winHeight - 60) / 2; //60 is an estimated height of the ie menu
	
		windowProperties = "width=" + winWidth + "," 
											+ "height=" + winHeight + "," 
											+ "location=0," 
											+ "menubar=0,"
											+ "resizable=0,"
											+ "scrollbars=0,"
											+ "status=0," 
											+ "titlebar=0,"
											+ "toolbar=0,"
											+ "hotkeys=0,"
											+ "screenx=" + xposition + "," //NN Only
											+ "screeny=" + yposition + "," //NN Only
											+ "left=" + xposition + "," //IE Only
											+ "top=" + yposition; //IE Only 
											
		newWindow=window.open(URL,windowName,windowProperties);
}

function closeWindow(windowName){
	newWindow.close(windowName)
}




function myFlash(swf, width, height)
{
	document.write("<object classid=\"clsid:d27cdb6e-ae6d-11cf-96b8-444553540000\"");
	document.write(" codebase=\"http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0\"");
	document.write(" width=\"");
	document.write( width );
	document.write("\" height=\"");
	document.write( height );
	document.write("\" align=\"middle\">");
	document.write("<param name=\"allowScriptAccess\" value=\"sameDomain\" />");
	document.write("<param name=\"movie\" value=\"");
	document.write( swf );
	document.write("\" />");
	document.write("<param name=\"menu\" value=\"false\" />");
	document.write("<param name=\"quality\" value=\"high\" />");
	document.write("<param name=\"wmode\" value=\"transparent\" />");
	document.write("<param name=\"bgcolor\" value=\"#090909\" />");
	document.write("<param name=\"SCALE\" value=\"noborder\" />");
	document.write("<embed");
	document.write(" src=\"");
	document.write( swf );
	document.write("\" width=\"");
	document.write( width );
	document.write("\" height=\"");
	document.write( height );
	document.write("\" align=\"middle\"");
	document.write(" menu=\"false\"");
	document.write(" quality=\"high\"");
	document.write(" wmode=\"transparent\"");
	document.write(" bgcolor=\"#090909\"");
	document.write(" allowscriptaccess=\"sameDomain\"");
	document.write(" type=\"application/x-shockwave-flash\"");
	document.write(" pluginspage=\"http://www.macromedia.com/go/getflashplayer\"");
	document.write(" scale=\"noborder\" />");
	document.write("</object>");
}




