// Obra un popup centrat a la pàgina
// exemple: popupCentrat('test2.html', 400,400)
function popupCentrat(arxiu, width, height) {

    //Aixo es perque no compila la beta de LaClinica.Net
    //es inacceptable 
    //al popup de la cita/vacuna es pujen els canvis al ascx.vb i no fa cas. Ho controlem aquí.
    if (height==259 || height==239)
    {
        height = 260;
    }
    //////////////////////////////////////////////////
    
	// Calculo el centre de la pàgina
    x = (screen.width - width) / 2;
    y = (screen.height - height) / 2 -75;

    mypopup = window.open(arxiu ,"finestraPopup","menubar=0,resizable=0,width=" + width + ",height=" + height + ",left=" + x + ",top=" + y);   
}
function popupCentratScroll(arxiu, width, height)
{
	// Calculo el centre de la pàgina
    x = (screen.width - width) / 2;
    y = (screen.height - height) / 2 -75;

    mypopup = window.open(arxiu ,"finestraPopup","menubar=0,resizable=0,scrollbars=1,width=" + width + ",height=" + height + ",left=" + x + ",top=" + y);   
}