var currCal;

function BodyClick(){
	if (!(window.event.srcElement.name == "cal_in" || window.event.srcElement.name == "cal_out")){
		document.all.cal.style.visibility="hidden";
		}
	}

function ShowCal(){
	var x=0;
	var y=0;
	var c=window.event.srcElement;
	while (c){
		x+=c.offsetLeft;
		y+=c.offsetTop;
		c=c.offsetParent;
		}
	if (window.event){
		currCal=window.event.srcElement.name;
		document.all.cal.style.left=x+2;
		document.all.cal.style.top=y+2;
		document.all.cal.style.visibility="visible";
		}
	else{
		alert("Your browser does not support our drop-down calendar system.  Please select your date manually");
		}
	}

function CalClick(y, m, d){
	//alert(currCal+" "+y+" "+m+" "+d);
	document.all.cal.style.visibility="hidden";
	if (d && currCal=="cal_in"){
		document.dateselector.month1.selectedIndex=m-1;
		document.dateselector.day1.selectedIndex=d-1;
		document.dateselector.year1.selectedIndex=y;
		}
	if (d && currCal=="cal_out"){
		document.dateselector.month2.selectedIndex=m-1;
		document.dateselector.day2.selectedIndex=d-1;
		document.dateselector.year2.selectedIndex=y;
		}
	}
