

	var time1;
	var time2;

	// preload the image...
	var i = new Image();
	i.src = '/script/images/popup-20100716.jpg';

	function load()
	{
		var html = 
'<table width="100%" height="100%" border="0" cellpadding="0" cellspacing="0">'+
'<tr height="340"><td>&nbsp;</td></tr>'+
'<tr><td valign="top" align="center">'+
'<table id="tblSplashContent" border="0" align="center" style="border: solid black 1px; align: center; width: 312px; height: 467px; background-image: url(/script/images/popup-20100716.jpg)">'+
'<tr height="10"><td colspan="2" align="right" valign="top"><a class="closeMe" href="#" onclick="hideSplash();">X</a>&nbsp;&nbsp;</td></tr>'+
'<tr><td width="110" align="center" valign="top"><span style="display: block; padding-left: 15px;color: #DD0000; font-size: 11pt; font-weight: bold"> </span></td>'+
'<td align="left"><h1 style="color: #DD0000; font-size: 20pt;"> </h1>'+
'</td></tr>'+
'<tr><td colspan="2" align="center" valign="top">'+
'<p align="center" style="color: #303030; padding-top: 5px; font-weight: bold; font-size: 10pt">'+
' '+
'</p><p align="center" style="color: black; font-weight: bold; font-size: 10pt"> </p>'+
'</td></tr></table></td></tr></table>';

		document.getElementById( 'splashDiv' ).innerHTML = html;
		time1 = setTimeout( "new Effect.SlideDown ( 'splashDiv' );", 200 );
		time2 = setTimeout( "new Effect.Fade ( 'splashDiv' );", 6000 );
	}
	function hideSplash()
	{
		clearTimeout(time2);
		new Effect.Fade ( 'splashDiv' );
	}
	window.onload=load;
