// JavaScript Document

function pgRedir(pgURL) {
	
document.location = pgURL;

}

function popUpTour() {
day = new Date();
id = day.getTime();
eval("page" + id + " = window.open('hospital/tour.php?n=1', '" + id + "', 'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=1,width=600,height=540,left=100,top=100');");
}

function popUpTourClinic() {
day = new Date();
id = day.getTime();
eval("page" + id + " = window.open('clinics/tour.php?n=1', '" + id + "', 'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=1,width=600,height=540,left=100,top=100');");
}

function popUpCoupon() {
day = new Date();
id = day.getTime();
eval("page" + id + " = window.open('fitness/fc_coupon.html', '" + id + "', 'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,width=335,height=515,left=100,top=100');");
}

function popUpCouponNMHW() {
day = new Date();
id = day.getTime();
eval("page" + id + " = window.open('../fitness/fc_coupon_nmhw.html', '" + id + "', 'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,width=335,height=515,left=100,top=100');");
}

function navTrampoline(showPic) {
	document.location = "tour.php?n=" + showPic;	
}

function emulateClick(btn) {
	document.getElementById(btn).click();
}

function showSum(sel_elm) {
	var rh = document.getElementById("rhcol");
    var descs = rh.getElementsByTagName("div"); 
	for (var i = 0; i < descs.length; i++) { 
		descs[i].style.display = "none";
	}
	var showDiv = sel_elm + "_desc";
	document.getElementById(showDiv).style.display = "block";
}

function showChildren(elmnum) {
	var childListID = "month" + elmnum + "_m";
	var monthImgID = "arrow" + elmnum;
//	alert(childListID);
	var childList = document.getElementById(childListID);
	var arrow = document.getElementById(monthImgID);
	if (childList.style.display == "block") {
		arrow.src = "../img/arrow_white_left.gif";
		childList.style.display = "none";
	} else {
		arrow.src = "../img/arrow_white_down.gif";
		childList.style.display = "block";
	}
}