var popWin
function pop(pho,cap)
{
	if(!popWin || popWin.closed)
	{
		popWin = window.open('','win1','status=no,toolbar=no,menu=no,scrollbars=no,width=530,height=380,top=100,left=5');
		var msg= "<html>";
		msg += "<head><TITLE>Location Map</TITLE></head>";
		msg += "<body topmargin=0 >";
		msg += "<p align=left><font size=2 face=verdana><b>"+ cap + "&nbsp; &nbsp; &nbsp; </b></font>"
		msg += "<a href='javascript:window.close()'><img src='images/close.gif' border=no ></a>"; 
		msg += "<a href='javascript:window.print()'><img src='images/print.gif' border=no ></a>"; 
		msg += "<img src=" + pho +" border=no height=350 width=500></p>";
		msg += "</body>";
		msg += "</html>";

		popWin.document.write(msg);
		popWin.window.location.reload();
	}
	
	else 
	{
		popWin.focus()
	}
}
