var markers = [];

function fullScreen(theURL) {
	if (navigator.appName == "Microsoft Internet Explorer"){ // better be ie6 at least
		window.open(theURL, '', 'fullscreen=yes, scrollbars=auto, resizable=yes').focus();
	}
	else { // i.e. if Firefox
		window.open(theURL, '', 'width=' + (screen.width-5) + ',height=' + (screen.height-30) + ', scrollbars=auto, resizable=yes, ').focus();
	}
}
