				function TeaserRouter(){
				  var hotelid = document.getElementById("destination").value;
				  if (hotelid === "none")
				  { 
				  	alert("Please Select A Hotel"); 
				  	return false; 
				  }
				  if (hotelid === "h00123")
				  { 
				  	var myformmethod = "GET"
				  	document.getElementById("teaserForm").setAttribute("method",myformmethod);
					var psk801 = document.getElementById( 'psk801' );
					psk801.name = "pg"; 
					psk801.value = "corpwideavail";
					var myformaction = "https://www.reservations-page.com/c00148/h00123/be.ashx"
				  	document.getElementById("teaserForm").setAttribute("action",myformaction);
					document.body.appendChild(pg);			
				  	return true;
				  }
				  else 
				  {
				  	var myformaction = "https://www.reservations-page.com/c00148/" + hotelid + "/be.ashx"
				  	document.getElementById("teaserForm").setAttribute("action",myformaction);
				  	return true;
				  }
				}