// JavaScript Document

var winTop = (screen.height / 2) - 125;
var winLeft = (screen.width / 2) - 125;

//POP UP FUNCTION

	function popImage01(){
	
	var myWin = window.open ("","goOpen","width=565,height=500,top=" + winTop + ",left=" + winLeft);
	
	// DOCUMENT WRITE NAME, AGE ETC.
		myWin.document.write("<!DOCTYPE HTML PUBLIC '-//W3C//DTD HTML 4.01 Transitional//EN'>");
		myWin.document.write("<html><head><title>Ric Electronics Map</title></head>");
		myWin.document.write("<body topmargin='0' leftmargin='0'>");
		myWin.document.write("<img src=images/map.jpg width=565px height=500px onclick=window.close();>");
		myWin.document.write("</body></html>");	
	}