// Immediate actions
document.oncontextmenu = new Function("return false;");

if (document.layers) {
	document.captureEvents(Event.MOUSEDOWN);
}
document.onmousedown=click;
// ****************************

// Function Definitions
function thinWin(myURL, myW, myH) {
	if (myW=="") {
		myW = "500";
	}
	
	if (myH=="300") {
		myH = "300";
	}
	
	window.open(myURL, "thinWin1", "toolbar=0, location=0, directories=0, status=1, scrollbars=1, menubar=0, resizable=1, copyhistory=0, width=" + myW + ", height=" + myH);
}

// ----------------------------

function click(e) {
	var message="Call us today to book your special event!\n972.317.2336";
	if (document.all) {
		if (event.button==2||event.button==3) {
			alert(message);
			return false;
		}
	}
	if (document.layers) {
		if (e.which == 3) {
			alert(message);
			return false;
		}
	}
}

// ----------------------------

function GoToPage(mypage) {
	window.location.replace(mypage)
}
