// JavaScript Document
function tellaFriend(URL)
	{
	var width=400;
	var height=350;
	//var wTop=25;
	//var wLeft=150;
	var winTop=(screen.height/2)-height/2;
	var winLeft=(screen.width/2)-width/2;
	var windowftr="scrollbars=no,width=350,height=400, resizable=no, ";
	windowftr=windowftr+"left="+winLeft+",";
	windowftr=windowftr+"top="+winTop;
	var dummy="z"
	var theURL, str
	//for new window
		var winName= Math.floor(Math.random()*100000);
				str='stc'+ winName  ;
		theURL=theURL+"&wName=" + str;
		str="'" + str + "'";
	var  newWindow=window.open("http://www.mallviewdlf.com/tell_a_friend.asp?lcURL="+URL, eval(str), windowftr);
	}
	
function VerifyData()
	{	
		if (document.Masters2.txtHotel.value == "Select Hotel" )  
   			{
   		 	alert("Please Select Hotel");
	   		document.Masters2.txtHotel.focus();
			return false;
	    	}

		if (document.Masters2.date1.value == "dd/mm/yy" )  
   			{
   		 	alert("Please Select Arrival Date");
	   		document.Masters2.date1.focus();
			return false;
	    	}
		if (document.Masters2.date2.value == "dd/mm/yy" )  
   			{
   		 	alert("Please Select Departure Date");
	   		document.Masters2.date2.focus();
			return false;
	    	}
		if (document.Masters2.txtEmail.value == "" )  
   			{
   		 	alert("Please enter value for the \" Email\" field.");
	   		document.Masters2.txtEmail.focus();
			return false;
 } return true;
	}