// JavaScript Document

function openWin(arg) {

  myWin = open (arg,"newWindow","width=650,height=550,status=no,menubar=no,toolbar=no,scrollbars=yes,resizable=yes");
}

function openWinMap(arg) {

  myWin = open (arg,"newWindowMap","width=415, height=605, toolbar=no,location=no,status=no,menubar=no,scrollbars=no,resizable=no");
}

function setAllMonths() 
{
	if (document.all.ArriveYear.value == "0")
	{
	document.all.ArriveMonth.value = "0"
	}
}

function openWinLarge(arg) {

  myWin = open (arg,"newWindow","width=770, height=500, toolbar=yes,location=yes,status=yes,menubar=yes,scrollbars=yes,resizable=yes");
}

function MM_openBrWindow(theURL,winName,features) { //v2.0

  window.open(theURL,winName,features);

}