Not spamming...just thought someone might find this usefull.
<html>
<head>
<script>
// JS/CSS Pop over script by Dave Lauderdale
// Originally published at:
www.digi-dl.com
// This script only works in IE browsers
function showWin() { winDisplay.style.display = ""}
function closeWin() { winDisplay.style.display = "none"}
</script>
</head>
<body onLoad="showWin()">
<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">
<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>