/**
 * This js file is included on every page. If you need a javascript method available all the time this is the place
 * to put it!
 */

function popUpHotels(URL,W,H) {
day = new Date();
id = day.getTime();
eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=0,resizable=0,width=" + W + ",height=" + H + ",left = 370,top = 244');");
}

function remove(local,msg,type) {
	if (confirm("Are you sure you want to "+type+" "+msg) ) {
		parent.location=local;
	}
}

var doubleClick = 0;

function noDoubleClick(form){
	if (doubleClick == 0){
		doubleClick++;
		return true;
	}

	return false;
}