function openWindow(URL,Name,Properties)
{	
	//alert(URL.substring(0, 27));
	if (URL.substring(0, 27) != "http://www.hotusahotels.com") {
		//alert('1');
		open(URL,Name,Properties);
	} else {
		//alert('2');
		open("WebApp?Resource=IdealPortal.FrameOpener&URL="+URL,Name,Properties);
	}
}

function jump(URL)
{
	//window.alert(URL);
	parent.location.href=URL;
}

function reloadOpener() {
 	// Recarga la ventana que abrió a la que ejecuta este javascript.
	if (self.opener) self.opener.location.reload();
}

function sendToAFriend(url)
{
	open("WebApp?Resource=IdealPortal.SendToAFriend&URL="+url,"SendToAFriend","width=350,height=300,scrollbars=no");
}

function frameOpenWindow(URL,Name,Properties)
{
	open("WebApp?Resource=IdealPortal.FrameOpener&URL="+URL,Name,Properties);
}

