document.oncontextmenu = new Function("return false;");

if (document.layers) {
	document.captureEvents(Event.MOUSEDOWN);
}

document.onmousedown=click;


function click(e) {
	//For your next party, wedding, company function or other special event please call Mike Kennedy  at: 817-469-6045 or 1-800-635-0072,
	var m="To book this band contact Mike Kennedy  at: 817-469-6045 or 1-800-635-0072,";
	if (document.all) {
		if (event.button==2 || event.button==3) {
			alert(m);
			return false;
		}
	}
	if (document.layers) {
		if (e.which == 3) {
			alert(m);
			return false;
		}
	}
}


function GoToPage(loc) {
	window.location.replace(loc)
}



function thinWin(loc, w, h) {
	if (w == "") {
		w = "500";
	}
	
	if (h=="300") {
		h = "300";
	}
	
	window.open(loc, "remote", "width=" + w + ", height=" + h);
}

