function abrirAvisoLegal()
{
	    var width = 600;
	    var height = 500;
	    var left = parseInt((screen.availWidth/2) - (width/2));
	    var top = parseInt((screen.availHeight/2) - (height/2));
	    var windowFeatures = "width=" + width + ",height=" + height + ",status=0,resizable=0,left=" + left + ",top=" + top + "screenX=" + left + ",screenY=" + top;
	    myWindow = window.open("html/aviso_legal.html", 'aviso_legal', windowFeatures);
}

function abrirTrabajaConNosotros()
{
	    var width = 583;
	    var height = 600;
	    var left = parseInt((screen.availWidth/2) - (width/2));
	    var top = parseInt((screen.availHeight/2) - (height/2));
	    var windowFeatures = "width=" + width + ",height=" + height + ",status=0,resizable=NO,left=" + left + ",top=" + top + "screenX=" + left + ",screenY=" + top;
	    myWindow = window.open("html/trabaja_con_nosotros.html", 'trabaja_con_nosotros', windowFeatures);
}

function abrirCondicionesGenerales()
{
	    var width = 583;
	    var height = 380;
	    var left = parseInt((screen.availWidth/2) - (width/2));
	    var top = parseInt((screen.availHeight/2) - (height/2));
	    var windowFeatures = "width=" + width + ",height=" + height + ",status=0,resizable=YES, scrollbars=YES, left=" + left + ",top=" + top + "screenX=" + left + ",screenY=" + top;
	    myWindow = window.open("html/condiciones_generales.html", 'trabaja_con_nosotros', windowFeatures);
}

function abrirpagina(pagina) {
	window.open(pagina,'window','width=500,height=400,scrollbars=yes');
} 

function abrirFicha(id)
{
	    var width = 583;
	    var height = 380;
	    var left = parseInt((screen.availWidth/2) - (width/2));
	    var top = parseInt((screen.availHeight/2) - (height/2));
	    var windowFeatures = "width=" + width + ",height=" + height + ",status=0,resizable=YES, scrollbars=YES, left=" + left + ",top=" + top + "screenX=" + left + ",screenY=" + top;
	    myWindow = window.open("ficha.php?id="+id, 'trabaja_con_nosotros', windowFeatures);
}


