// PRELOAD DE IMAGENES //

var status = 1;
var toc = new Array();

function item(off, over){
	this.off = new Image(); this.off.src = off;
	this.over = new Image(); this.over.src = over;
}
function cache(id, off, over){
	item[id] = new item(off, over);
	toc[toc.length] = id;
}
function over(id){
	document[id].src = item[id].over.src;
}
function out(id){
	document[id].src = item[id].off.src;
}

cache("ingresar", "../imgs/textos/logingresar_off.gif", "../imgs/textos/logingresar_on.gif");
cache("contactenos", "../imgs/textos/logcontact_off.gif", "../imgs/textos/logcontact_on.gif");
cache("qsomos", "../imgs/textos/menuqsomos_off.gif", "../imgs/textos/menuqsomos_on.gif");
cache("fqs", "../imgs/textos/menufqs_off.gif", "../imgs/textos/menufqs_on.gif");
cache("pres", "../imgs/textos/menupres_off.gif", "../imgs/textos/menupres_on.gif");
cache("down", "../imgs/textos/menudown_off.gif", "../imgs/textos/menudown_on.gif");
cache("soluciones", "../imgs/textos/soluciones_off.gif", "../imgs/textos/soluciones_on.gif");
cache("producto", "../imgs/textos/bot_off.gif", "../imgs/textos/bot_on.gif");
cache("consulta1", "../imgs/textos/botconsulta_off.gif", "../imgs/textos/botconsulta_on.gif");
cache("consulta2", "../imgs/textos/botconsulta_off.gif", "../imgs/textos/botconsulta_on.gif");
cache("consulta21", "../imgs/textos/botconsulta2_off.gif", "../imgs/textos/botconsulta2_on.gif");
cache("consulta22", "../imgs/textos/botconsulta2_off.gif", "../imgs/textos/botconsulta2_on.gif");

// FIN DE PRELOAD DE IMAGENES //

// POPUP //

function popcontrato(){
	window.open('../registracion/contrato.html','contrato','width=700,height=500,directories=no,status=no,location=no,toolbar=no,scrollbars=yes,resize=no,menubar=no,copyhistory=no');
}