function OpenPopup(Titulo) {

	var IE;

	if (navigator.appName.indexOf("Explorer")>-1) {
		IE=navigator.appVersion.substring(0,1);
		if (navigator.appVersion.indexOf("5")>-1) IE=5;
	} else {
		IE=0;
	}

	if (Titulo=="pais") {
		if (IE) window.open("../home/pais.htm", "", "width=424, height=228, left="+window.screenLeft+", top="+(window.screenTop+179)+"");
		else window.open("../home/pais.htm", "", "width=424, height=208, left="+window.screenX+", top="+(window.screenY+(window.outerHeight-window.innerHeight)+154)+"");
	}
	
	if (Titulo=="contacto") {
		if (IE) window.open("../home/contacto.htm", "", "width=424, height=400, left=40, top=60");
		else window.open("../home/contacto.htm", "", "width=424, height=350, left=40, top=60");
	}
		
	if (Titulo=="ayuda") {
		if (IE) window.open("../home/ayuda/ayuda.htm", "", "width=542, height=478, left=40, top=60, scrollbars=yes");
		else window.open("../home/ayuda/ayuda.htm", "", "width=542, height=458, left=40, top=60, scrollbars=yes");
	}

}
