function TeaserRouter(){
  var hotelid = document.getElementById("destination").value;
  if (hotelid === "none")
  { 
	alert("Please Select A Hotel"); 
	return false; 
  }
  if (hotelid === "h00176")
  { 
	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/c00178/h00176/be.ashx"
	document.getElementById("teaserForm").setAttribute("action",myformaction);
	document.body.appendChild(pg);			
	return true;
  }
  else 
  {
	var myformaction = "https://www.reservations-page.com/c00178/" + hotelid + "/be.ashx"
	document.getElementById("teaserForm").setAttribute("action",myformaction);
	return true;
  }
}
