var root_path_url = "http://www.matchhotels.com";
var rnd = Math.floor(Math.random()*11)

function hotel_widget(affiliate_id, network_affiliate_id, landmark_id, hotel_id, region_id, postcode_id, color_id, show_suitcase, lat, lon, radius, cstr)
{
    
  var content = "";
	var width = "550";
	var height = "660";
	if (show_suitcase == "yes")
	{
		width = "550";
		height = "626";
	};
  
  content += '<iframe scrolling="no" width="'+width+'" height="'+height+'" frameborder="0" src="'+root_path_url+'/widget.php?'+rnd+'';
  
  var params = 'refid='+affiliate_id;
  params += '&naid='+network_affiliate_id;
  params += '&lid='+landmark_id;
  params += '&hid='+hotel_id;
  params += '&rid='+region_id;
  params += '&pid='+postcode_id;
  params += '&lat='+lat;
  params += '&lon='+lon;
  params += '&rad='+radius;
  params += '&cstr='+escape(cstr);
  params += '&color_id='+color_id;
  params += '&show_suitcase='+escape(show_suitcase);
  
  content += params + '">Please upgrade your web browser - it does not support iframes.</iframe>';

  document.write(content);
  
  
}
