function PopIt(label, msg,x,y)
{
  // Set up Page Colors & table
  var s1 = 
    "<title>Information!</title>" +
    "<body bgcolor='#FFFFFF'>" +
        "<font size='4'>"
  
  var s2 = "<center><font color='#FF0000'><b>"+label+"</b></font><p></center>"
 
  var s3 =   
    "<form><input type='button' value='Okay'" +
                   "onClick='self.close()'>"  +
    "</form></body></html>"

  popup = window.open("","popDialog","height=" + y + ",width=" + x + ",front=yes,toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no")
  popup.document.write(s1+s2+msg+s3)
  popup.document.close()
}
