function openWin(bpage){
window.open(bpage,'application','top=0,left=30,width=740,height=450,menubar=no,toolbar=yes,location=no,status=yes,resizable=yes,scrollbars=yes');
}

function Form_Validator(theForm)
{

if (theForm.sur.value == "")
  {
    alert("Please enter a value for the \"Family name\" field.");
    theForm.sur.focus();
    return (false);
  }

	if (theForm.e_mail.value == "")
  {
    alert("Please enter your email address.");
    theForm.e_mail.focus();
    return (false);
  }

  var pattern = /.+@.+(\.).+/; 
  if (theForm.e_mail.value.search(pattern) == -1) 
  { 
    alert("Please enter a valid E-mail address."); 
    theForm.e_mail.focus(); 
    return (false); 
  }


   return (true); 
}

function openWin1(bpage){
	window.open("hotels/"+bpage,'application','top=0,left=30,width=550,height=550,menubar=no,toolbar=no,location=no,status=no,resizable=no,scrollbars=yes');
}
function openWin3(bpage){
window.open(bpage,'application','top=0,left=30,width=800,height=580,menubar=no,toolbar=no,location=no,status=yes,resizable=yes,scrollbars=no');
}
function CreateBookmarkLink()
{
	title = document.title;
	url = location.href;

	if (window.sidebar)
	{ // Mozilla Firefox Bookmark
		window.sidebar.addPanel(title, url,"");
	}
	else if( window.external )
	{ // IE Favorite
		window.external.AddFavorite( url, title);
	}
	else if(window.opera && window.print)
	{ // Opera Hotlist
		return true;
	}
}

function openGallery(page) {
	window.open(page,'Gallery','top=0,left=100,width=850,height=650,menubar=yes,toolbar=no,location=no,status=yes,resizable=no,scrollbars=yes');
}
