<html>
<head>
<script>
var delay='1'; // How many seconds before window opens
// JS/CSS Pop over script by Dave Lauderdale
// Originally published at: www.digi-dl.com
function showWin() { winDisplay.style.display = ""}
function closeWin() { winDisplay.style.display = "none"}
</script>
</head>
<body onLoad="setTimeout('showWin()',delay*1000)">
<!-- The below line has been broken to fit on one page -->
<table id="winDisplay" cellSpacing="0" cellPadding="0" border="1" width="300"
height="200" align="center" bgcolor="white" style="display:none; left:400px;
position:absolute; top:200px; border-left: black 1px double; border-right:
black 1px double; border-top: black 1px double; border-bottom: black 1px double">
<tr>
<td align="left" valign="top" bgcolor="blue" width="100%" height="10px">
<font color=white size=2 face=arial><b>
<!-- Your page title goes here -->
Your Title Here...
</b></font>
</td>
<td width="10px" height="10px" bgcolor="red" align="right">
<!-- The below line has been broken to fit on one page -->
<font color="white" size="3" face="arial"><span onclick="closeWin()"
style="cursor:hand" title="Click here to close this window"><b>X</b>
</span></font>
</td></tr>
<tr>
<td colspan="2">
<!-- Your window content here goes -->
<font color=black size=2 face=arial><b>
<center>Your Content Here...</center></b>
</font>
</td></tr></table>
</body></html>