// JavaScript Document

function mapOpenWindow() {

var mlHeight = 601;
var mlWidth = 600;
var mlTop = (screen.height) ? (screen.height - mlHeight) / 2 : 0;
var mlLeft = (screen.width) ? (screen.width - mlWidth) / 2 : 0;
var msParameters = 'location=no,top=' + 0 + ',left=' + mlLeft + ',menubar=no,resizable=no,status=no,height=' + mlHeight + ',width=' + mlWidth + ',scrollbars=no,toolbar=no,menubar=no,directories=no';
var oEvent = window.open('arcadia_map.php','Map',msParameters);
}


function yardageGuideOpenWindow() {

var mlHeight = 400;
var mlWidth = 600;
var mlTop = (screen.height) ? (screen.height - mlHeight) / 2 : 0;
var mlLeft = (screen.width) ? (screen.width - mlWidth) / 2 : 0;
var msParameters = 'location=no,top=' + 0 + ',left=' + mlLeft + ',menubar=no,resizable=no,status=no,height=' + mlHeight + ',width=' + mlWidth + ',scrollbars=no,toolbar=no,menubar=no,directories=no';
var oEvent = window.open('yardage_guide.php','YardageGuide',msParameters);
}


