//<--
//start new script code



function PopUp(ref, title, namer, x, y)
{
  // Create the Window
  if (x == null) { x="460" }
  if (y == null) { x="520" }

  popup = window.open("",namer,"height=" + x + ",width=" + y + ",resizable=0,scrollbars=0,menubar=0")
  popup.document.write
      ("<HTML><HEAD><TITLE>" + title + "</TITLE></HEAD>")
   popup.document.write
      ("<BODY bgcolor='#000000' leftmargin='0' topmargin='0' marginwidth='0' marginheight='0'><IMG SRC=" + ref +"></BODY></HTML>")
}

	//-->


