/* POP UP WINDOW FOR THUMBNAIL IMAGES SPA TOUR */
function openThumb(image) {
	var winName = "thumbImage";
	var features = "width=360,height=250,scrollbars=no";
	theURL = "spatour.php?image="+image;
  window.open(theURL,winName,features);
  // MM_openBrWindow('sections/photogalimage.php?img=17','racingcars','width=600,height=365')
}	

var sc;
function showCoupon() {
	sc = setInterval("mycoupon()", 2000);
}

function mycoupon() {
	c = document.getElementById("coupon");
	if(c.style.visibility == "hidden") {
		c.style.visibility = "visible";
		clearInterval(sc);
		sc = setInterval("hideMyCoupon()", 10000);
	}
}

function hideMyCoupon() {
	c = document.getElementById("coupon");
	c.style.visibility = "hidden";
	clearInterval(sc);
}

function hideCoupon() {
	c = document.getElementById("coupon");
	c.style.visibility = "hidden";
}
function couponPrint() {
	var winName = "printCoupon";
	var features = "width=500,height=325,scrollbars=no";
	theURL = "print_coupon.php";
  window.open(theURL,winName,features);
  // MM_openBrWindow('sections/photogalimage.php?img=17','racingcars','width=600,height=365')
}