//**********************
//***** paloma.js ******
//**********************

function bookmarkFramed()
{
var url = self.location.href;
var who = "The Paloma Centre - " + document.title;
window.external.AddFavorite(url,who);
} 

function naviPage(the_page)
{
	if (the_page == "") // if there's no target
	{
	return true;
	} else {
	self.location = the_page;
	}
}

function pop(page) 
 { 
  pop1 = window.open(page,'pop1','toolbar=no,location=no,directories=no,status=no,menubar=no,resizable=yes,copyhistory=no,scrollbars=yes,width=400,height=400');
  pop1.focus();
 } 

