function MM_callJS(jsStr) { //v2.0
  return eval(jsStr)
}

function AddToFaves_hp(){
	var thePage = location.href;
	if (thePage.lastIndexOf('#')!=-1)
		thePage = thePage.substring(0,thePage.lastIndexOf('#'));
	if (typeof(window.external) != 'undefined')
		window.external.AddFavorite(thePage,document.title);
	else {
		booker_hp = window.open(thePage,'booker_','menubar,width=325,height=100,left=140,top=60');
		booker_hp.focus();
	}
}

if (window.name == 'booker_') {
	document.write(
		"<style>#header, #container, #footer { display:none; } body { width:325px;height:100px;}"
		+"#testDiv {position:absolute; z-index:200; background-color:red; width:325px; height:100px;  } </style>"
		+"<div style=\"background-image:url(http://www.mont.co.nz/img-ns-Addtofav.gif); background-repeat:no-repeat; height:100px; padding-top:62px; padding-left:11px; font: 11px Verdana, Arial, Helvetica, sans-serif; color: #FFFFFF; \"><a href=\"#\" onclick=\"window.close()\" style=\"color: #FFFFFF\"></a></div>"
	);
}

function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}

//popUp div start

var amID = "blank";

function showMe(containerId){
	if(amID != "blank"){
		hideMe(amID);
	}
	amID = containerId;
	showContainer(containerId);
}
function showContainer(containerId){
	obj = MM_findObj(containerId);
	if (!obj) return;
	obj.style.display = 'block';
}
function hideMe(containerId){
	obj2 = MM_findObj(containerId)
	if (!obj2) return;
	obj2.style.display = 'none';
}
