function NewWindow(mypage, myname, w, h, scroll) {
var winl = (screen.width - w) / 2;
var wint = (screen.height - h) / 2;
winprops = 'height='+h+',width='+w+',top='+wint+',left='+winl+',scrollbars='+scroll+',resizable=yes'
win = window.open(mypage, myname, winprops)
if (parseInt(navigator.appVersion) >= 4) { win.window.focus(); }
}
 
function open_window(votre_page)
{
	var hauteur_popup=357;
	var H = (screen.height - hauteur_popup) / 2;
	var largeur_popup=461;
	var L = (screen.width - largeur_popup) / 2;
	pop_up = window.open(votre_page,"Popup","scrollbars=no,resizable=no,height="+hauteur_popup+",width="+largeur_popup+",top="+H+",left="+L);
}

function abre(myPage,alto,ancho)
{
	var H = (screen.height - alto) / 2;
	var L = (screen.width - ancho) / 2;
	var Propiedades = "scrollbars=no,resizable=no,height="+alto+",width="+ancho+",top="+H+",left="+L;
	pop_up = window.open(myPage,"Popup", Propiedades);
}
function abreTodo(myPage)
{
    var ancho = screen.width;
	var alto = screen.height;
//	var Propiedades = "scrollbars=no,resizable=no,fullscreen";
	var Propiedades = "fullscreen,scrollbars=yes";
	pop_up = window.open(myPage,"Popup", Propiedades);
}


function muebles(votre_page)
{
	var hauteur_popup=425;
	var H = (screen.height - hauteur_popup) / 2;
	var largeur_popup=504;
	var L = (screen.width - largeur_popup) / 2;
	pop_up = window.open(votre_page,"PopMuebles","scrollbars=no,resizable=no,height="+hauteur_popup+",width="+largeur_popup+",top="+H+",left="+L);
}


function cuadros(votre_page)
{
	var hauteur_popup=425;
	var H = (screen.height - hauteur_popup) / 2;
	var largeur_popup=285;
	var L = (screen.width - largeur_popup) / 2;
	pop_up = window.open(votre_page,"PopMuebles","scrollbars=no,resizable=no,height="+hauteur_popup+",width="+largeur_popup+",top="+H+",left="+L);
}
