function fNull() {}

// MENUS
// -----
function menu1Over(opc) {
	 opc.className = 'MENU1TD1';
}

function menu1Out(opc) {
	 opc.className = 'MENU1TD0';
}

function menu2Over(opc) {
	opc.className = 'MENU2TD1';
}

function menu2Out(opc) {
	 opc.className = 'MENU2TD0';
}


// FORMULARIOS
// -----------
function formOver(opc,tipo) {
	opc.className = 'F'+tipo; 
}

function formOut(opc) {
	opc.className = 'F0'; 
}

function checkChange(n)
{
	var i, servProd = 0;
	if (f1.all["check"+ n].value == 0)
	{
		document.images["imgCheck"+ n].src = "img/icocheckbox.1.gif";
		f1.all["check"+ n].value = 1;
	} else
		{
			document.images["imgCheck"+ n].src = "img/icocheckbox.0.gif";
			f1.all["check"+ n].value = 0;
		}
}


// CARGA PÁGINA
// ------------
function OpenPag(l1,l2,l3) {
	if (l1==null) l1="00";
		else if (l1<9) l1 = "0"+ l1;
	if (l2==null) l2="00";
		else if (l2<9) l2 = "0"+ l2;
	if (l3==null) l3="00";
		else if (l3<9) l3 = "0"+ l3;
	location.href = "index.asp?level="+ l1 +"-"+ l2 +"-"+ l3;
}




// ANULAR EL CLICK DERECHO
// -----------------------
var message="";
function clickIE() {if (document.all) {(message);return false;}}
function clickNS(e) {if 
(document.layers||(document.getElementById&&!document.all)) {
if (e.which==2||e.which==3) {(message);return false;}}}
if (document.layers) 
{document.captureEvents(Event.MOUSEDOWN);document.onmousedown=clickNS;}
else{document.onmouseup=clickNS;document.oncontextmenu=clickIE;}
document.oncontextmenu=new Function("return false")



// CARGA EN VENTANA FLOTANTE
// -------------------------
function OpenIT(fich,w,h) {
	VF=window.open(fich,'_blank','width='+ w +',height='+ h +',status=yes,toolbar=no,location=no,directories=no,menubar=no,scrollbars=auto,resizable=no,copyhistory=no')
	window.setTimeout('window.VF.focus()',500)
}

