function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}


function Zoom(theImage,theTitle,x,y) {

    var x1 = x + 24

    var y1 = y + 80

	var newWindow = null

        newWindow = window.open("","","width="+x1+",height="+y1+",scrollbars=no,resizable=yes")  

	if (newWindow !=null) {

		newWindow.focus()

		var newimage = "<HTML><HEAD><TITLE>" +theTitle+ "</TITLE></HEAD>"

		newimage += "<BODY TOPMARGIN=0 LEFTMARGIN=0 MARGINWIDTH=0 MARGINHEIGHT=0><FORM><DIV align=\"center\"><IMG SRC=" +theImage+ " WIDTH=" +x+ " HEIGHT=" +y+ " BORDER=0 VSPACE=10 CLASS='popup'><BR>"

		newimage += "<FONT ><B>" +theTitle+ "</B></FONT><BR>"

		newimage += "<IMG SRC='space.gif' WIDTH=1 HEIGHT=10><BR>"

		newimage += "<INPUT TYPE='button' VALUE='Close This Window' onClick='javascript:window.close()'></FORM></DIV>"

		newimage += "</BODY></HTML>"

		newWindow.document.write(newimage)

		newWindow.document.close()

	}

}


