function popitup(url)
{
	newwindow=window.open(url,'Map','height=600,width=650,top=50,left=200');
	if (window.focus) {newwindow.focus()}
	return false;
}

function ow(url,lk)
{
h = 550; 
w = 680;
XPos = screen.availWidth/2 - w/2; 
YPos = (screen.availHeight/2 - h/2) - 85; 
var ow = window.open(url, "newwindow", "toolbar=yes,menubar=no,scrollbars=yes,resizable=yes,location=top,status=no,width="+w+",height="+h+",ScreenX=0,ScreenY=0,Top="+YPos+",Left="+XPos); 
if (!(navigator.appName.indexOf("Netscape")!= -1 && parseInt(navigator.appVersion) == 4)) {lk.style.color = '#800080';}
ow.focus();
}