
//leaving site dialog warning [RSG 10-21-2011]
	$(document).ready(function() {
		$('body').append('<div id="dialog" title="The Registry Collection &reg;" />');
		var txtLink = ['www.chooseacottage.co.uk/partners/rgc/index.asp','registrycollectioncruises.com','cottages-4-you.co.uk','offthebeatenpath.com','perrygolf.com','presnellsportingcollection.com','pureluxuryholidays.co.uk','thewyndhamgrandcollection.com','theregistrycollection.yachtstore.com','www.cottages-4-you.co.uk/registry','www.fairmont.com/promotions/registrycollection','www.fairmont.com','www.cottageselection.co.uk/sites/cottageselection/partners/RGC/pages/home.aspx'];
		$('a[href^="http"]').click(function(e) {
			for(var i=0; i<txtLink.length;i++){
				if($(this).attr('href').toLowerCase().indexOf(txtLink[i]) >= 0){
					$('#dialog').html("<div class='ui-corner-all' style='padding:10px; background-color:#fff; margin-top:20px;'>Si usted da un \"clic\"  en aceptar será transferido fuera del sitio <b><em>The Registry Collection</b></em> al sitio de un tercero proveedor de servicios por lo cual estará sujeto a la respectiva política de privacidad, términos de uso, así como a los términos y condiciones del tercero prestador del servicio.</div>");
					$("#dialog").data('link', this).dialog('open');
					return false;
				}
				
			}		
			//return true;
		});
		

		$("#dialog").dialog({
			bgiframe: true,
			modal: true,
			autoOpen: false,
			height:225,
			width:375,
			show: "fold",
			position:"center",
			buttons: {"Cancel": function() {
				$(this).dialog("close");
			},
			"Accept": function() {
				$(this).dialog("close");
				var path = $(this).data('link').href;
				$(location).attr('href', path);
			}
			
			}
		});
	});
	
