<!--
function popUp(URL,TITLE,SHORTDESC) {
	var close_button 	= "yes"		// CLOSE BUTTON ON/OFF
	var details 		= "ON"		// SHORTDESC ON/OFF
	var view_width 		= 810		// width
	var view_height 	= 500		// height
	var show_right 	= (screen.width/2) - (view_width/2)	// height
	var scrollbarS 		= "1"		// ON=1 OFF=0
	var background_colors = "ffffff" // body color
	var border_color = "ffffff" // body color
	var look='top=200, left='+show_right+', toolbar=0,scrollbars=' + scrollbarS + ',location=0,statusbar=0,menubar=0,resizable=0,width='+view_width+',height='+view_height+','

	popwin=window.open("","",look)
	popwin.document.open()
	popwin.document.write('<html><head><title>'+TITLE+'</title>')
	popwin.document.write('<link href="css/stylesheet.css" rel="stylesheet" type="text/css" media="screen">')
	popwin.document.write('</head>')
	popwin.document.write('<body bgcolor="#'+background_colors+'" leftmargin=0 rightmargin=0 topmargin=0 bottommargin=0 marginheight=0 marginwidth=0>')
	popwin.document.write('<TABLE cellpadding=0 cellspacing=0 border=0 width="100%">')
	if (details == "ON") {
		popwin.document.write('<tr><td valign="middle" height="50" align="center" class="title2">')
		popwin.document.write(SHORTDESC)
		popwin.document.write('</td></tr>')
	}
	popwin.document.write('<tr><td align="center">')	
	popwin.document.write('</td></tr></table>')
	popwin.document.write('<TABLE cellpadding=0 cellspacing=0 border=0 width="100%" height="" ><tr><td align="center">')
	popwin.document.write('<TABLE cellpadding="0" cellspacing="0" border="1" bordercolor="#' + border_color + '" style="border-collapse:collapse">')
	popwin.document.write('<img src="'+URL+'" align="center">')
	popwin.document.write('</td></tr></table>')
	if (close_button == "yes") {
		popwin.document.write('<tr><td valign="top" align="center">')
		popwin.document.write('<form style="margin: 10px"><input type="button" value="Close" onClick=\'self.close()\' onmouseover="this.className=\'buttonon-popups\'" onmouseout="this.className=\'button-popups\'" class="button-popups"></form>')
	}
	popwin.document.write('</td></tr></table>')
	popwin.document.write('</body>')
	popwin.document.close()
}
<!--