// ***********************************************************************************
// script written by marc boncz (marc.boncz@top.com.br)
// ***********************************************************************************

document.onmousedown = checkClick;
if (document.layers) {
	document.captureEvents(Event.MOUSEDOWN)
}

// ***********************************************************************************
// functions used in all pages of the site
// ***********************************************************************************
function checkClick(ev) {
	if (navigator.appName == "Netscape") {
		if (ev.which != 1) {
			alert("Copyright 2004-2007 Charmant Vakantie Verblijf / MB");
			return false;
		}
	} else {
		if (event.button != 1) {
			alert("Copyright 2004-2007 Charmant Vakantie Verblijf / MB");
			return false;
		}
	}
}

function checkEmbedding() {
	passpage = document.URL; 
	if (top.location == self.location) {
		top.location.href="../index.php?OpenPage="+passpage;
	}
}

function popUp(URL,winWidth,winHeight,winX,winY) {
	day = new Date();
	id = day.getTime();
	eval("page" + id + " = window.open(URL, '" + id + "','toolbar=0,scrollbars=0,location=0,statusbar=1,menubar=0,resizable=0,width=" + winWidth + ", height=" + winHeight +", left=" + winX +", top= " + winY + "');");
}

function popUpBig(URL,winWidth,winHeight,winX,winY) {
	day = new Date();
	id = day.getTime();
	eval("page" + id + " = window.open(URL, '" + id + "','toolbar=0,scrollbars=1,location=0,statusbar=1,menubar=0,resizable=0,width=" + winWidth + ", height=" + winHeight +", left=" + winX +", top= " + winY + "');");
}


