// **********  popup window enlarge  **********

function PopUp(img,width,height,style,caption) {
	var xheight = (height+70);
	var xwidth = (width+20);
	var s1 = "<html><head><title>"+style+"</title><link rel=stylesheet href='Styles/wvm.css' type='text/css'>"+
			 "</head><body class='pop'>";
	var s2 = "<div align='center'><img src='Images/Maps/"+img+"' border='0' alt=''>";
	var s3 = "<p>"+caption+"<br>";
	var s4 = "<a href = '#' onClick='window.close(self);'>close window</a></p></div></body></html>";

	popup = window.open('','popup','height='+xheight+',width='+xwidth+',scrollbars=0,resizable=0,menubar=1,toolbar=0,location=0,directories=0,status=0,left='+(screen.availWidth/2-(xwidth/2))+',top='+((screen.availHeight/2-(xheight/2))-50)+'');
	popup.document.write(s1+s2+s3+s4);
	popup.document.close();
	popup.focus();
}