// JavaScript Document

function popwindow(url) {
window.open(url, "myWindow","status = 1, height = 390, width = 450, resizable = 0")
}
function popbigwindow(url) {
window.open(url, "myWindow","status = 1, height = 600, width = 800, resizable = 0")
}

function initpage()
{	
	//Fixes chrome bug not making "body" the actual full page height thus leaving whitespace at the bottom of the page
	if(document.getElementById('main').offsetHeight < document.documentElement.clientHeight)
	{
		var mapheight = document.documentElement.clientHeight;
	
		document.getElementById('main').style.height = mapheight + 'px';
	}
}