<!-- hide from old browsers
function PopIt(label, msg, img, width, height){          
        // Set up Page Colors & Table          
        var s1 =     "<TITLE>"+label+"</TITLE>"+
"<body>"+
"<table width=100% border=0>"+
"  <tr>"+
"    <td width=50%><b><font size=3>"+label+"</font></b></td>"+
"    <td align=right><form >"+
"        <input name='Close' type='button' value='Close' onClick='self.close()'>"+
"      </form></td>"+
"</tr>"+
"</table>"+
"<p>"+msg+"</p>"+
"<p>"+img+"</p>"+
"</body>"          
          popup = window.open("","popDialog","height="+height+",width="+width)
          popup.document.write(s1)
          popup.document.close()
          popup.focus()}




<!-- done hiding -->

