				function TeaserRouter(){
				  var checkinmy = document.getElementById("checkinyyyymm").value;
				  if (checkinmy === "none")
				  { 
				  	alert("Please Select an Arrival Date"); 
				  	return false; 
				  }
				  var checkinday = document.getElementById("checkindd").value;
				  if (checkinday === "none")
				  { 
				  	alert("Please Select a Check-in Day"); 
				  	return false; 
				  }
				  var nights = document.getElementById("nightstay").value;
				  if (nights === "none")
				  { 
				  	alert("Please Select Your Number of Nights"); 
				  	return false; 
				  }
				  else 
				  {
				  	return true;
				  }
				}