function postIHForm(oForm){
	var qs = "";

	qs = qs + "?hotelid=" + oForm.HotelID.value;
	if (oForm.LanguageID) { qs = qs + "&languageid=" + oForm.LanguageID.value}
	qs = qs + "&datein=" + oForm.DateIn.value;
	if (oForm.Length) { qs = qs + "&length=" + oForm.Length.value }
	if (oForm.DateOut) { qs = qs + "&dateout=" + oForm.DateOut.value }
	qs = qs + "&Adults=" + oForm.Adults.value;
	if (oForm.Children) { qs = qs + "&children=" + oForm.Children.value }

	 _gaq.push(function() {
      var tracker = _gat._getTrackerByName(); 
      window.open(tracker._getLinkerUrl('https://booking.ihotelier.com/istay/istay.jsp' + qs));
   });
}


function IHreservations(theUrl){
	var qs = new String(theUrl);
	_gaq.push(function() {
      var tracker = _gat._getTrackerByName(); 
			window.open(tracker._getLinkerUrl('https://booking.ihotelier.com/istay/istay.jsp' + qs));
  });   	
}


function IHSpecials(theSpecialsUrl){
	_gaq.push(function() {
      var tracker = _gat._getTrackerByName(); 
      window.open(tracker._getLinkerUrl(theSpecialsUrl));
  });
}


