﻿// JScript File
function $(id)
{
    return document.getElementById(id);
}

function cambiarFoto(tagA, nomTag, imagen)
{
    try
    {  
        var pos = imagen.indexOf('.');
        var ext = imagen.substr(pos);
        var filename = imagen.substr(0, pos);
             
        $(nomTag).src = "/files/thumbnails/" + filename + "_w377_h275_art" + ext;
        $(tagA).href = "/files/" + imagen;
    }
    
    catch(e)
    {
    }
}

function modalWindow(pagina, titulo)
{
	/*
	Función que abre una pagina dentro de una ventana modal
	utilizando mootools y una ampliación.
	Espera la URL y el titulo.
	*/
	
	MOOdalBox.open( // case matters
	pagina, // the link URL
	titulo, // the caption (link's title) - can be blank
	"400 500" // width and height of the box - can be left blank
	);

}

function verPopup(file)
{
    win = window.open(file,'Iberostar','width=400,height=500,scrollbars=yes, menubar=no, location=no, resizable=yes');
}