// JavaScript Document
function newwin(url){
//	alert(url);
	sWidth = screen.availWidth;

	sHeight = screen.availHeight;

	winWidth = 500;

	winHeight = 600;

	sLeft = (sWidth - winWidth) / 2;

	sTop = (sHeight - winHeight) / 2;



	window.open(url, "newwindow", "width=" + winWidth + ",height=" + winHeight + ",top=" + sTop + ",left=" + sLeft + ",toolbar=0,menubar=0,status=0,scrollbars=0,resizable=0");

}
function viewMap()
{
	document.getElementById('viewMap').innerHTML="<img src='images/map.jpg' width='200' height='197'>";
}
function hideMap()
{
	document.getElementById('viewMap').innerHTML="";
}

