// JavaScript Document


function windowOpener(title,image,name,widthx,heighty) {
   //close("displayWindow")
   msgWindow=window.open("","" + name + "","menubar=no,width=" + widthx + ",height=" + heighty + ",left=0,top=0")
   					  //("", name, "menubar=no;width=" + widthx + ";height=" + heighty)  ???
   msgWindow.document.write
      ("<html><HEAD><TITLE>" + title + "</TITLE></HEAD>")
   msgWindow.document.write
      ("<body leftmargin='0' topmargin='0' marginwidth='0' marginheight='0' style='overflow: hidden'>")
   msgWindow.document.write 
      ("<a href='javascript: window.close()'><img src='" + image + "' border='0'></a>") 
	msgWindow.document.write
      ("</body></html>")
}