function open_maps(){
maps= window.open("../maps/map_index.html", "maps", "width=800,height=550,menubar=no,resizeable=no,status=no,toolbar=no")
maps.moveTo(0,0)
maps.focus();
}


function openFullscreen(page) {
	if (is_win) {
		var adjWidth=10;
		var adjHeight=30;
	}else if (is_mac) {
		var adjWidth=20;
		var adjHeight=35;
	}
windowprops = "width=" + (screen.availWidth - adjWidth) + ",height=" + (screen.availHeight - adjHeight)+ ",location=no,menubar=no,personalbar=no,resizable=no,screenX=0,screenY=0,locationbar=no,scrollbars=no,directories=no,statusbar=no,toolbar=no";
	if (exp && is_win) {
		CPcd = window.open(page, 'CPcd', 'fullscreen=yes');
	}
	else {
		CPcd = window.open(page, 'CPcd', windowprops);
		CPcd.moveTo(0,0);
	}
}


