function newWindow(fileName,w,h) {
	var x,y;
	if(w){wh = w} else {wh=419}
	if(h){hh = h} else {hh=416}
	
	x=Math.floor(screen.width/2 - wh/2);
	y=Math.floor(screen.height/2 - hh/2);
	
		myWin=window.open(""+fileName+"","popup","width="+wh+",height="+hh+",scrollbars=yes,location=no,toolbar=no,resizable=no,status=no,menubar=no,left="+x+",top="+y);
		myWin.focus();
}

function SiteMap(){
	x=Math.floor(screen.width/2 - 300/2);
	y=Math.floor(screen.height/2 - 400/2);
	myWin=window.open("/site_map.asp","SiteMap","width=300,height=400,scrollbars=yes,location=no,toolbar=no,resizable=no,status=no,menubar=no,left="+x+",top="+y);
	myWin.focus();
}		

