function WinOpen(url,winName)
{
	features = "toolbar=1,location=0,menubar=0,directories=0,resizable=1,status=1,scrollbars=1,width=550,height=200";
	newWin = window.open(url,winName,features);
	setTimeout('newWin.focus();',250);
}

function popWindow(url, name, width, height) {
	var x = (screen.width - width)/2;
	var y = (screen.height - height)/2;
    var opts = 'height=' + height + ',width=' + width + ",screenX=" + x + ",left=" + x + ",screenY=" + y + ",top=" + y + ',location=no,scrollbars=yes,menubar=no,resizable=no,status=no,toolbar=no';

    var newWindow = window.open(url, name, opts);
    newWindow.focus();

} 
function LoadFlash1()
			{
				document.write('<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0" width="752" height="90" id="header" align="middle" VIEWASTEXT>\n');
				document.write('<param name="allowScriptAccess" value="sameDomain" />\n');
				document.write('<param name="movie" value="/assets/flash/header.swf" />\n');
				document.write('<param name="quality" value="high" />\n');
				document.write('<param name="bgcolor" value="#333333" />\n');
				document.write('<embed src="/assets/flash/header.swf" quality="high" bgcolor="#333333" width="752" height="90" name="header" align="middle" allowScriptAccess="sameDomain" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" />\n');
				document.write('</object>\n');
			}