/* © 2005 Gran Hotel Las Rozas */

window.onload = function(){
	var frame = window.parent.document.getElementById("cDisplay");
		frame.style.height = 0 + "px";
	var altura = 0;
		if(document.documentElement && document.documentElement.scrollHeight){ 
			altura = document.documentElement.scrollHeight; }
		else
			if(document.body && document.body.scrollHeight){ altura = document.body.scrollHeight; }
			else { altura = window.innerHeight; } 
		frame.style.height = altura + 95 + "px";
		if (parseInt(frame.style.height) < 419) {
			frame.style.height = "419px";
			setVal("cDch", "309px");
		} else {
			if (parseInt(frame.style.height) > 723) {
				setVal("cDch", "703px");
				frame.style.height = "723px";
			} else {
				setVal("cDch", altura + 76 + "px");
			}
		}
}
function setVal (nom, valor) { window.parent.document.getElementById(nom).style.height = valor; }
function winOp(url, nom, esp){ window.open(url, nom, esp); }

/* Correo */
function writeMail(mail, estilo){
	//Debe generar una cadena del formato: 
	//		<a href="mailto:contacto@northstar-solutions.com" title="contacto@northstar-solutions.com"></a>
	strMail= mail;
	strMail=strMail + '@';
	strMail=strMail + 'granhotellasrozas.com';
	document.write ('<a href="mailto:' + strMail + '" title="' + strMail +'" class="' + estilo + '">'+strMail+'</a>');
}