
var root_path_url = "http://www.matchhotels.com";

//=====================================================================================
//=====================================================================================

function hotel_widget(partner_id, network_affiliate_id, landmark_id, hotel_id, region_id, postcode_id, color_id, show_suitcase, lat, lon, radius, cstr)
{
	// Set width and height

	var width = "550";
	var height = "660";
	if (show_suitcase == "yes")
	{
		width = "575";
		height = "736";
	};
	
	// Set where_mode and where_id

	var where_mode = "";
	var where_id = "";
	
	if (landmark_id > 0) {
		where_mode = "L";
		where_id = landmark_id;
	}
	else if (region_id > 0) {
		where_mode = "R";
		where_id = region_id;
	}
	else if (hotel_id > 0) {
		where_mode = "H";
		where_id = hotel_id;
	}
	else if (postcode_id > 0) {
		where_mode = "P";
		where_id = postcode_id;
	}

  

	// Create HTML
	    
  var params = 'partner_id='+partner_id;
  params += '&naid='+network_affiliate_id;
  params += '&where_mode='+where_mode;
  params += '&where_id='+where_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);

  var content = '<iframe scrolling="no" width="'+width+'" height="'+height+'" frameborder="0" src="'+root_path_url+'/widget.php?' + params + '">Please upgrade your web browser - it does not support iframes.</iframe>';

  document.write(content);
  
}







//=====================================================================================
//=====================================================================================

function hotel_gadget(partner_id, network_affiliate_id, where_mode, where_id, color_id, width)
{
	if (width=='undefined') {
		width = 250;
	}
	// Increae height if narrow 
	if (width < 235) {
		height = 280;
	}
	else {
		height = 250;
	}
	
  var params = 'partner_id='+partner_id;
  params += '&naid='+network_affiliate_id;
  params += '&where_mode='+where_mode;
  params += '&where_id='+where_id;
  params += '&color_id='+color_id;
  params += '&width='+width;

  var content = '<iframe src="' + root_path_url + '/igadget.php?' + params + '"';
  content += 'width="' + width + '" ';
  content += 'height="' + height + '" ';
  content += 'marginwidth="0" marginheight="0" frameborder="0" scrolling="no"	allowtransparency="true">Please upgrade your web browser - it does not support iframes.</iframe>';

  document.write(content);
  
}

