/***********************************************************************************
*	(c) Wim Lammers 2006 version 1.0 14 July 200
*	For info write to wlammers@smoothmap.org		          *
*	You may remove all comments for faster loading	          *		
***********************************************************************************/


		function PopUpWindow(WindowName, left, top, width, height) {
		width = width + 20;   height = height + 90;  // to give a bit more room to picture and close button
	
		var positionstring = 'left=' + left + ',top=' + top;
		var sizestring = 'width=' + width + ',height=' + height;
		//win = window.open(WindowName,"",'scrollbars=yes,resizable=yes,' + sizestring + ',left=400, top=200');

		win = window.open(WindowName,"",'scrollbars=yes,resizable=yes,' + sizestring +','+ positionstring);
	
		var s1 ="<CENTER><IMG SRC='"+WindowName+"' BORDER=0>"
		var s2 ="<FORM><br><INPUT TYPE='BUTTON' Input Colour='#0000FF' VALUE='Close Window'"+	" onClick='self.close()'>"
		var s3 ="</br></FORM></CENTER>"
		//var s4 ="copyright wlammers 2006" // not yet
		win.document.write(s1+s2+s3)
		win.document.close()
		}
		
