<!--
function PopIt(label, msg, URLE){  
// Set up Page Colors & Table  
var DQUOTE = '\"'
var s1 =     "<TITLE>" + label + "</TITLE>" + 
"<BODY BGCOLOR='EFF2FC'><TABLE BORDER=0><TR>" +
"<TD WIDTH=100% HEIGHT=100 VALIGN=TOP ALIGN=LEFT>"+
"<FONT SIZE=2>"
var s2 = "<FONT COLOR='FF0000'><B>"+label+"</B></FONT><br>"
var s3 = "</TR><TR><TD>"+
"</TABLE></BODY>"
popup = window.open("","popDialog","height=230,width=300,scrollbars=yes")
popup.document.write(s1+s2+msg)
popup.document.close()
}
// -->

