function validateEmail(emailaddress)                                
	{
	var emstr;  
	var sht;    
	var dot;    
	var Wrongsim='"' + " :*'!%+=;,/#";
	
	emstr=emailaddress;
	sht=emstr.indexOf('@');
	dot=emstr.indexOf('.');
	

	if(sht==-1 || dot==-1)
		{	
		return false;
		}
		if(sht==0||dot==0)
		{		
		return false;
		}		
		if(emstr.charAt(emstr.length-1)=='@'||emstr.charAt(emstr.length-1)=='.')
		{		
        return false;
		}
	if(emstr.split('@').length!=2)
		{		
        return false;
		}
	for(i=0;i<emstr.length;i++)
		{
		if(Wrongsim.indexOf(emstr.charAt(i))!=-1)
			{			
            return false;
			}
		}
	return true;
}

/// All common event listening fucntions here

$(document).ready(function() 
{ 
	/// Disable right click
	
	$(document).bind("contextmenu",function(e){
        return false;
    });


$("#fbbox").click(function() 
	{ 
	$.prompt('<iframe scrolling="no" frameborder="0" src="http://www.facebook.com/connect/connect.php?id=125593631130&connections=10&stream=1" allowtransparency="true" style="border: none; width: 370px; height: 460px;"></iframe>',{ show:'slideDown', buttons: {} });
	}); 

	/// Search button clicked
		
	$("#btnHamperSearch").click(function() 
	{ 
	
	$.prompt('<img src="/images/ajax-loader.gif"/><br />Sending request Please wait',{ show:'slideDown', buttons: {} });
	
		if (document.getElementById('txtSearch').value.length<=2)
		{	
			$.prompt('<img src="/images/warning.png" height="50" width="50" align="left" /><br />&nbsp;&nbsp;&nbsp;&nbsp;<font color="red" size="2">Error in Search submission</font><br /><br /><ul><li>Search term should not be blank</li><li>Search term should be greater than or equal to 2 characters</li><li>Only alphanumeric characters allowed</li></ul>',{ show:'slideDown' });
			$.ImpromptuClose();	
			return false;
		}
		else
		{
			location.href='/hampers_search/?requestkey='+ document.getElementById('requestkey').value + '&txtSearch='+ document.getElementById('txtSearch').value;
			return true;
		}	
	}); 
	
	
	/// End of Search function
	
	///Track order functions
	
	$("#btnTrackOrderRight").click(function() 
	{ 
	$.prompt('<img src="/images/ajax-loader.gif"/><br />Sending request Please wait',{ show:'slideDown', buttons: {} });
	
		if (document.getElementById('txtTrackOrderRight').value.length<=5)
		{	
		$.prompt('<img src="/images/warning.png" height="50" width="50" align="left" /><br />&nbsp;&nbsp;&nbsp;&nbsp;<font color="red" size="2">Error in Order Tracking submission</font><br /><br /><ul><li>Tracking number term should not be blank</li><li>Tracking number term should be greater than 5 characters</li><li>Only alphanumeric characters allowed</li></ul>',{ show:'slideDown' });
		$.ImpromptuClose();	
		return false;
		}
		else
		{
			location.href='/hampers_order_tracking/?requestkey='+ document.getElementById('requestkey').value + '&txtTrackOrderRight='+ document.getElementById('txtTrackOrderRight').value;
			return true;
		}
	});
	
	$("#btnTrackOrder").click(function() 
	{ 
	$.prompt('<img src="/images/ajax-loader.gif"/><br />Sending request Please wait',{ show:'slideDown', buttons: {} });
		if (document.getElementById('txtTrackOrder').value.length<=5)
		{	
		$.prompt('<img src="/images/warning.png" height="50" width="50" align="left" /><br />&nbsp;&nbsp;&nbsp;&nbsp;<font color="red" size="2">Error in Order Tracking submission</font><br /><br /><ul><li>Tracking number term should not be blank</li><li>Tracking number term should be greater than 5 characters</li><li>Only alphanumeric characters allowed</li></ul>',{ show:'slideDown' });
		$.ImpromptuClose();	
		return false;
		}
		else
		{
			location.href='/hampers_order_tracking/?requestkey='+ document.getElementById('requestkey').value + '&txtTrackOrderRight='+ document.getElementById('txtTrackOrder').value;
			return true;
		}
	});
	
	///End of track order function
	
	/// Newsletter button clicked
	
	$("#btnNewsletter").click(function() 
	{ 
	$.prompt('<img src="/images/ajax-loader.gif"/><br />Sending request Please wait',{ show:'slideDown', buttons: {} });
	
		if (validateEmail(document.getElementById('txtNews').value)==false)
		{	
		$.prompt('<img src="/images/warning.png" height="50" width="50" align="left" /><br />&nbsp;&nbsp;&nbsp;&nbsp;<font color="red" size="2">Error in Newsletter signup</font><br /><br /><ul><li>Email address should not be blank</li><li>Valid email address e.g john@example.com</li></ul>',{ show:'slideDown' });
		$.ImpromptuClose();
		return false;
		}
		else
		{
			location.href='/newsletter_signup/?requestkey='+ document.getElementById('requestkey').value + '&txtNews='+ document.getElementById('txtNews').value;
			return true;
		}
	
	}); 
	
	/// End of newsletter button event
	
	/// Send email to friend general
	$("#btnTellFriendGeneral").click(function() 
	{ 
		$.prompt('<img src="/images/ajax-loader.gif"/><br />Sending request Please wait',{ show:'slideDown', buttons: {} });
	
		var errorString='';	
	
		if (document.getElementById('txtFriendsName').value.length<=3)
		{	
		errorString='<li>Friend\'s name is required</li>';
		}
		if (validateEmail(document.getElementById('txtFriendsEmail').value)==false)
		{	
		errorString+='<li>Valid Friend\'s email address required e.g john@example.com</li>';
		}
		if (document.getElementById('txtYourName').value.length<=3)
		{	
		errorString+='<li>Your name is required</li>';
		}
		if (errorString.length>0)
		{
			$.prompt('<img src="/images/warning.png" height="50" width="50" align="left" /><br />&nbsp;&nbsp;&nbsp;&nbsp;<font color="red" size="2">Error in sending email</font><br /><br /><ul>'+ errorString + '</ul>',{ show:'slideDown' });
			$.ImpromptuClose();	
			return false
		}
		else
		{
			location.href='/tell_friend/?mode=submit&requestkey='+ document.getElementById('requestkey').value + '&txtFriendsName='+ document.getElementById('txtFriendsName').value + '&txtFriendsEmail='+ document.getElementById('txtFriendsEmail').value+ '&txtYourName='+ document.getElementById('txtYourName').value;			
			
		}
	}); 
	/// End of send email to friend general
	
	///Website login function
	$("#btnLogin").click(function() 
	{ 
	$.prompt('<img src="/images/ajax-loader.gif"/><br />Sending request Please wait',{ show:'slideDown', buttons: {} });
	
		if (validateEmail(document.frmlogin.txtEmailL.value)==false || document.frmlogin.txtPasswordL.value.length<=5)
		{	
		$.prompt('<img src="/images/warning.png" height="50" width="50" align="left" /><br />&nbsp;&nbsp;&nbsp;&nbsp;<font color="red" size="2">Error Logging into your account</font><br /><br /><ul><li>Login Email address should not be blank</li><li>Valid email address e.g john@example.com</li><li>Password should not be blank</li><li>Password should be between 6-10 characters</li></ul>',{ show:'slideDown' });
		$.ImpromptuClose();
		return false;
		}
		else
		{			
			document.frmlogin.submit();
						
		}
	}); 
	///End of website login function
	
	///Password recovery function
	$("#btnRecPassword").click(function() 
	{ 
	$.prompt('<img src="/images/ajax-loader.gif"/><br />Sending request Please wait',{ show:'slideDown', buttons: {} });
		if (validateEmail(document.frmlogin.txtEmailL.value)==false)
		{	
		$.prompt('<img src="/images/warning.png" height="50" width="50" align="left" /><br />&nbsp;&nbsp;&nbsp;&nbsp;<font color="red" size="2">Error in Password Recovery</font><br /><br /><ul><li>Email address should not be blank</li><li>Valid email address e.g john@example.com</li></ul>',{ show:'slideDown' });
		$.ImpromptuClose();
		return false;
		}
		location.href='/recover_password/?email='+ document.frmlogin.txtEmailL.value + '&hidLogin='+ document.frmlogin.hidLogin.value ;
	});
	/// End of password recovery function
	
	///Start of registration fucntion
	$("#btnRegister").click(function() 
	{ 
		$.prompt('<img src="/images/ajax-loader.gif"/><br />Sending request Please wait',{ show:'slideDown', buttons: {} });
		
		var errorString='';
	
		if (validateEmail(document.frmregister.txtEmail.value)==false)
		{	
		errorString='<li>Valid email address required e.g john@example.com</li>';
		}
	
		if (document.frmregister.txtPassword1.value.length<=5)
		{	
		errorString+='<li>Password should be between 6-10 characters</li>';
		}
	
		if (document.frmregister.txtPassword2.value.length<=5)
		{	
		errorString+='<li>Confirm Password should be between 6-10 characters</li>';
		}
		if (document.frmregister.txtPassword1.value.length!=document.frmregister.txtPassword2.value.length)
		{	
		errorString+='<li>Passwords did not match</li>';
		}
		if (document.frmregister.txtFname.value.length<=2)
		{	
		errorString+='<li>First Name should be greater than 2 characters</li>';
		}
		if (document.frmregister.txtLname.value.length<=2)
		{	
		errorString+='<li>Last Name should be greater than 2 characters</li>';
		}
		if (document.frmregister.txtCity.value.length<=3)
		{	
		errorString+='<li>City should be greater than 3 characters</li>';
		}
		if (document.frmregister.txtPPhone.value.length<=7)
		{	
		errorString+='<li>Primary Phone required </li>';
		}
		/*if (document.frmregister.chkTerms.checked !=1)
		{
			errorString+='<li>Terms of use and Privacy policy should be accepted </li>';
		}*/
	
		
		if (errorString.length>0)
		{
			$.prompt('<img src="/images/warning.png" height="50" width="50" align="left" /><br />&nbsp;&nbsp;&nbsp;&nbsp;<font color="red" size="2">Error in Registration</font><br /><br /><ul>'+ errorString + '</ul>',{ show:'slideDown' });
			$.ImpromptuClose();
			return false
		}
		else
		{
			document.frmregister.submit();
		}
	});
	///End of registration function
	
	/// Tell a friend about hamper
	$("#btnSendEmailHamperS").click(function() 
	{
		$.prompt('<img src="/images/ajax-loader.gif"/><br />Sending request Please wait',{ show:'slideDown', buttons: {} });
		
		var errorString='';	
	
		if (document.frmtellfriend.txtFriendsName.value.length<=3)
		{	
		errorString='<li>Friend\'s name is required</li>';
		}
		if (validateEmail(document.frmtellfriend.txtFriendsEmail.value)==false)
		{	
		errorString+='<li>Valid Friend\'s email address required e.g john@example.com</li>';
		}
		if (document.frmtellfriend.txtYourName.value.length<=3)
		{	
		errorString+='<li>Your name is required</li>';
		}	
	
		if (errorString.length>0)
		{
			$.prompt('<img src="/images/warning.png" height="50" width="50" align="left" /><br />&nbsp;&nbsp;&nbsp;&nbsp;<font color="red" size="2">Error in sending email</font><br /><br /><ul>'+ errorString + '</ul>',{ show:'slideDown' });
			$.ImpromptuClose();
			return false
		}
		else
		{					
			
			$.ajax({    
			type: "POST",
			url: "/tell_friend/tell_friend.asp",    
			data:{friendname: document.frmtellfriend.txtFriendsName.value, friendemail: document.frmtellfriend.txtFriendsEmail.value, yourname: document.frmtellfriend.txtYourName.value, hampername:document.frmtellfriend.hampername.value, linkurl: document.frmtellfriend.linkurl.value,requestkey:document.getElementById('requestkey').value},
			cache: false,
			success: function(data){                 
			$.ImpromptuClose();	
			
			var JSONData = 'responseData = '+  data ;    
			eval(JSONData);
			document.getElementById('requestkey').value= responseData.guid;
			jQuery('#frmtellfriend')[0].reset();		
			$.prompt('<img src="/images/success.png" height="50" width="50" align="left" /><br />&nbsp;&nbsp;&nbsp;&nbsp;<font color="green" size="2">Thank you!,</font> <br /><br />Your friend has been notified by email about this hamper',{ show:'slideDown' });
			return true	
			 
			},    
			error: function(xhr){ 
			$.ImpromptuClose();	
			$.prompt('<img src="/images/warning.png" height="50" width="50" align="left" /><br />&nbsp;&nbsp;&nbsp;&nbsp;<font color="red" size="2">Error occured processing the request, please try again</font><br /><br />',{ show:'slideDown' });
			return false;
			}  
			});
			
		
		}
	});
	/// End of tell friend about hamper
	
	/// Password update function
	$("#btnChangePassword").click(function() 
	{
		$.prompt('<img src="/images/ajax-loader.gif"/><br />Sending request Please wait',{ show:'slideDown', buttons: {} });
		
		var errorString='';
	
		if (document.frmactchange.txtPassword.value.length<=2)
		{	
		errorString+='<li>Old Password should be between 6-10 characters</li>';
		}
		
		if (document.frmactchange.txtNPassword1.value.length<=5)
		{	
		errorString+='<li>New Password should be between 6-10 characters</li>';
		}
	
		if (document.frmactchange.txtNPassword2.value.length<=5)
		{	
		errorString+='<li>Confirm New Password should be between 6-10 characters</li>';
		}
		if (document.frmactchange.txtNPassword1.value.length!=document.frmactchange.txtNPassword2.value.length)
		{	
		errorString+='<li>New Passwords did not match</li>';
		}		
			
		if (errorString.length>0)
		{
			$.prompt('<img src="/images/warning.png" height="50" width="50" align="left" /><br />&nbsp;&nbsp;&nbsp;&nbsp;<font color="red" size="2">Error in changing password</font><br /><br /><ul>'+ errorString + '</ul>',{ show:'slideDown' });
			$.ImpromptuClose();	
			return false
		}
		else
		{
			document.frmactchange.submit();
		}
	});
	/// End of Password update function
	
	///Profile update function
	$("#btnUpdateProfile").click(function() 
	{
		$.prompt('<img src="/images/ajax-loader.gif"/><br />Sending request Please wait',{ show:'slideDown', buttons: {} });
		
		var errorString='';	
		
		if (document.frmactprofile.txtFname.value.length<=2)
		{	
		errorString+='<li>First Name should be greater than 2 characters</li>';
		}
		if (document.frmactprofile.txtLname.value.length<=2)
		{	
		errorString+='<li>Last Name should be greater than 2 characters</li>';
		}
		if (document.frmactprofile.txtCity.value.length<=3)
		{	
		errorString+='<li>City should be greater than 3 characters</li>';
		}
		if (document.frmactprofile.txtPPhone.value.length<=7)
		{	
		errorString+='<li>Primary Phone required </li>';
		}
			
		if (errorString.length>0)
		{
			$.prompt('<img src="/images/warning.png" height="50" width="50" align="left" /><br />&nbsp;&nbsp;&nbsp;&nbsp;<font color="red" size="2">Error updating personal details</font><br /><br /><ul>'+ errorString + '</ul>',{ show:'slideDown' });
			$.ImpromptuClose();	
			return false
		}
		else
		{
			document.frmactprofile.submit();
		}
	});
	///end of profile update function
		
	///Pay now validation function

	$("#btnPayNow").click(function() 
	{
		$.prompt('<img src="/images/ajax-loader.gif"/><br />Sending request Please wait',{ show:'slideDown', buttons: {} });
		
		var errorString='';	
		
		var message_index, message_index2,message_index3; 
		
        message_index = $("#delcountry").val(); 
		message_index2 = $("#dLocation").val(); 
		message_index3 = $("#deliverydate").val(); 
		
		if (document.formcheckout.txtRecFname.value.length<=2)
		{	
		errorString+='<li>First Name should be greater than 2 characters</li>';
		}
		if (document.formcheckout.txtRecLname.value.length<=2)
		{	
		errorString+='<li>Last Name should be greater than 2 characters</li>';
		}
		if (document.formcheckout.txtRAddress.value.length<=10)
		{	
		errorString+='<li>Delivery Address should be greater than 10 characters</li>';
		}
		if (document.formcheckout.txtRPPhone.value.length<=7)
		{	
		errorString+='<li>Primary Phone should be greater than 7 characters</li>';
		}
		
		if (message_index<=0) 
		{	
		errorString+='<li>Delivery Country required</li>';
		}
		
		if (message_index2<0 || message_index2==null) 
		{	
		errorString+='<li>Delivery Location required</li>';
		}
		
		if (message_index3<=0 || message_index3==null) 
		{	
		errorString+='<li>Delivery Date required</li>';
		}
		
		
		if (errorString.length>0)
		{
			$.prompt('<img src="/images/warning.png" height="50" width="50" align="left" /><br />&nbsp;&nbsp;&nbsp;&nbsp;<font color="red" size="2">Error sending request</font><br /><br /><ul>'+ errorString + '</ul>',{ show:'slideDown' });
			$.ImpromptuClose();	
			return false
		}
		else
		{
			document.formcheckout.submit();
		}
		
	});
	///end of paynow button function

});



	
// Fucntion to swicth country

function switchCountry(url, deliverycountry, deliverycountryid)
{
	function mysubmitfunc(v,m,f){
     if (v)
	 {
		 if (f.chkdefault)
		 {
			 $.post("/includes/setcountrycookie.asp",   
				  {deliverycountry: deliverycountry, deliverycountryid: deliverycountryid},
				  function(data){  	
				  }   
				); 
								
		 }	
		 location.href=url;
	 }
	 else
	 {
		return true;
	 }
	  
	}

	$.prompt('<img src="/images/warning.png" height="50" width="50" align="left" /><br />&nbsp;&nbsp;&nbsp;&nbsp;<font color="red" size="2">Changing country will delete items from cart</font><br/><br /> Press <strong>Ok</strong> to change the delivery country <br />or<br /> press <b>Cancel</b> to return to the existing delivery country<br /><br/><input type=checkbox name=chkdefault id=chkdefault value=1 /> Make this my default country next time I visit this website',{ show:'slideDown', buttons: { Ok: true, Cancel: false },submit: mysubmitfunc});
		return false;
	
}

// End function

// Function to show dietary info

function showDietaryInfo(info)
{
	
	$.prompt(info,{ show:'slideDown' });
		return false;
	
}

//End function

// Function to sene email when multiple hampers are displayed on the page

function tellAFriend(hamper, linkurl)
{
	
	function mysubmitfunc(v,m,f){
     if (v)
	 {		 			
			var errorString='';	
		
			if (f.friendname.length<=3)
			{	
			errorString='<li>Friend\'s name is required</li>';
			}
			if (validateEmail(f.friendemail)==false)
			{	
			errorString+='<li>Valid Friend\'s email address required e.g john@example.com</li>';
			}
			if (f.yourname.length<=3)
			{	
			errorString+='<li>Your name is required</li>';
			}
			
			if (errorString.length>0)
			{
				$.prompt('<img src="/images/warning.png" height="50" width="50" align="left" /><br />&nbsp;&nbsp;&nbsp;&nbsp;<font size="2" color="red">Error sending email </font> <br /> <br /><ul>'+ errorString + '</ul>',{ show:'slideDown' });					
				return false;
				
			}
			else
			{	
			$.ImpromptuClose();	
			
			$.prompt('<img src="/images/ajax-loader.gif"/><br />Sending request Please wait',{ show:'slideDown', buttons: {} });			
			
			$.ajax({    
			type: "POST",
			url: "/tell_friend/tell_friend.asp",    
			data:{friendname: f.friendname, friendemail: f.friendemail, yourname: f.yourname, hampername:hamper, linkurl: linkurl,requestkey:document.getElementById('requestkey').value},
			cache: false,
			success: function(data){                 
			$.ImpromptuClose();				
			var JSONData = 'responseData = '+  data ;    
			eval(JSONData);
			document.getElementById('requestkey').value= responseData.guid;
			
			$.prompt('<img src="/images/success.png" height="50" width="50" align="left" /><br />&nbsp;&nbsp;&nbsp;&nbsp;<font color="green" size="2">Thank you!,</font> <br /><br />Your friend has been notified by email about this hamper',{ show:'slideDown' });
			return true	
			 
			},    
			error: function(xhr){ 
			$.ImpromptuClose();	
			$.prompt('<img src="/images/warning.png" height="50" width="50" align="left" /><br />&nbsp;&nbsp;&nbsp;&nbsp;<font color="red" size="2">Error occured processing the request, please try again</font><br /><br />',{ show:'slideDown' });
			return false;
			}  
			});				
								
			}
			
	 
	 }
	
	
	}
	 
	$.prompt('<img src="/images/warning.png" height="50" width="50" align="left" /><br />&nbsp;&nbsp;&nbsp;&nbsp;<font size="2">Tell a friend about ' + hamper +' Hamper </font> <br /><br />Friend\'s name : <input type=text name=friendname id=friendname size=30 maxlength=50 /><br />Friend\'s email : <input type=text name=friendemail id=friendemail size=30 maxlength=100 /><br />Your name &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;: <input type=text name=yourname id=yourname size=30 maxlength=50 />',{ show:'slideDown', buttons: { Send: true,Cancel:false }, callback: mysubmitfunc });
		return false;
		
}

///End of the function

function addToCart(productid, prodref, type)
{

var subtype=document.getElementById(type).value;

	if (productid.length<=0 && prodref.length<=0)
			{
				$.prompt('<img src="/images/warning.png" height="50" width="50" align="left" /><br />&nbsp;&nbsp;&nbsp;&nbsp;<font size="2" color="red">Error adding item to the cart',{ show:'slideDown' });
				return false;				
			}
			else
			{	
			$.ImpromptuClose();	
			$.prompt('<img src="/images/ajax-loader.gif"/><br />Adding item to the cart, please wait..',{ show:'slideDown', buttons: {} });			
			
			$.ajax({    
			type: "POST",
			url: "/add_to_cart/",    
			data:{productid: productid, refkey: prodref, subkey: subtype,requestkey: document.getElementById('requestkey').value},
			cache: false,
			success: function(data){                 
			$.ImpromptuClose();				
			var JSONData = 'responseData = '+  data ;    
			eval(JSONData);
			
			document.getElementById('requestkey').value= responseData.guid;		
			
			$.prompt('<img src="/images/success.png" height="50" width="50" align="left" /><br />&nbsp;&nbsp;&nbsp;&nbsp;<font color="green" size="2">Hamper has been added to the cart.</font> <br /><br /><a href="/hampers_cart/">Click here</a> to go to Check Out or click OK to continue shopping',{ show:'slideDown' });
			return true	
			 
			},    
			error: function(xhr){ 
			$.ImpromptuClose();	
			$.prompt('<img src="/images/warning.png" height="50" width="50" align="left" /><br />&nbsp;&nbsp;&nbsp;&nbsp;<font color="red" size="2">Error occured.</font><br /><br />Hamper was not added to the cart',{ show:'slideDown' });
			return false;
			}  
			});		
				
								
			}		
}

function addToCartT(productid, prodref, type)
{
	if (productid.length<=0 && prodref.length<=0)
			{
				$.prompt('<img src="/images/warning.png" height="50" width="50" align="left" /><br />&nbsp;&nbsp;&nbsp;&nbsp;<font size="2" color="red">Error adding item to the cart',{ show:'slideDown' });
				return false;
				
			}
			else
			{	
			$.ImpromptuClose();	
			$.prompt('<img src="/images/ajax-loader.gif"/><br />Adding item to the cart, please wait..',{ show:'slideDown', buttons: {} });			
			$.ajax({    
			type: "POST",
			url: "/add_to_cart/",    
			data:{productid: productid, refkey: prodref, subkey: type,requestkey: document.getElementById('requestkey').value},
			cache: false,
			success: function(data){                 
			$.ImpromptuClose();				
			var JSONData = 'responseData = '+  data ;    
			eval(JSONData);
			
			document.getElementById('requestkey').value= responseData.guid;		
			
			$.prompt('<img src="/images/success.png" height="50" width="50" align="left" /><br />&nbsp;&nbsp;&nbsp;&nbsp;<font color="green" size="2">Hamper has been added to the cart.</font> <br /><br /><a href="/hampers_cart/">Click here</a> to go to Check Out or click OK to continue shopping',{ show:'slideDown' });
			return true	
			 
			},    
			error: function(xhr){ 
			$.ImpromptuClose();	
			$.prompt('<img src="/images/warning.png" height="50" width="50" align="left" /><br />&nbsp;&nbsp;&nbsp;&nbsp;<font color="red" size="2">Error occured.</font><br /><br />Hamper was not added to the cart',{ show:'slideDown' });
			return false;
			}  
			});						
				
								
			}			
	
}






