// JavaScript Document

function windowOpener(title,image,name,widthx,heighty) {
   //close("displayWindow")
   msgWindow=window.open("","" + name + "","menubar=no,width=" + widthx + ",height=" + heighty + ",")
   msgWindow.document.write
      ("<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>")
}
