function showPYT()	{
	var oPlanYourTrip = document.getElementById("planYourTrip");
	var oPYTContainer = document.getElementById("planYourTripContainer");
	
	oPYTContainer.style.visibility = 'hidden';
	oPYTContainer.style.display = 'block';
	oPYTContainer.style.left = ( oPlanYourTrip.offsetLeft - 30 ) + "px";
	oPYTContainer.style.top =  (oPlanYourTrip.offsetTop - oPYTContainer.offsetHeight) + "px";
	oPYTContainer.style.visibility = 'visible';	
}

function moveVacationPlannerCalendars() {
	var oCal = document.getElementById("cal1Container");
	if (oCal) oCal.style.top = (getTop("vacationPlanner") - 200) + "px";
	var oCal = document.getElementById("cal2Container");
	if (oCal) oCal.style.top = (getTop("vacationPlanner") - 200) + "px";
}
	
function getTop(elementID){
	var o =  document.getElementById(elementID);
	if (!o) return 0;
	var iTop = 0;
	while( o != null ) {
		iTop += o.offsetTop;
		o = o.offsetParent;
	}
	return iTop;
}
	
	