<!-- Begin
function loadImages() {
	if (document.getElementById) { // DOM3 = IE5, NS6
		document.getElementById('hidepage').style.visibility = 'hidden';
	}
	else {
		if (document.layers) { // Netscape 4
			document.hidepage.visibility = 'hidden';
			}
		else { // IE 4
		document.all.hidepage.style.visibility = 'hidden';
		}
	}
}
// End -->


<!-- Begin
function detenerError(){
return true
}
window.onerror=detenerError
// End -->

<!-- Begin
//Texto en barra de estado
 var cuenta=0
 var texto=" INLACH - Industrias Lácteas Chichas S.R.L. " //Aqui el mensaje
 function scrolltexto () {
 window.status=texto.substring (cuenta,texto.length)+  texto.substring(0,cuenta)
 if (cuenta <texto.length){ cuenta 
 }else{
 cuenta=0
 }
 setTimeout("scrolltexto()",80)
 }
 scrolltexto ()
// End -->


<!-- Begin
document.oncontextmenu = function(){return false}
// End -->



<!-- Begin
function clickIE() {
if (document.all) {
return false;
}
} 
function clickNS(e) {
if (document.layers||(document.getElementById&&!document.all)) { 
if (e.which==2||e.which==3) {
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") 
// End -->


/*<!-- Begin
function disableselect(e)
{   return false }
function reEnable()
{   return true  }
//if IE4+
document.onselectstart=new Function ("return false")
//if NS6
if (window.sidebar)
{   document.onmousedown=disableselect
   document.onclick=reEnable }
// End -->*/


<!-- Begin
//Efecto en Imagenes
var baseopacity=30

function slowhigh(which2){
imgobj=which2
browserdetect=which2.filters? "ie" : typeof which2.style.MozOpacity=="string"? "mozilla" : ""
instantset(baseopacity)
highlighting=setInterval("gradualfade(imgobj)",50)
}

function slowlow(which2){
cleartimer()
instantset(baseopacity)
}

function instantset(degree){
if (browserdetect=="mozilla")
imgobj.style.MozOpacity=degree/100
else if (browserdetect=="ie")
imgobj.filters.alpha.opacity=degree
}

function cleartimer(){
if (window.highlighting) clearInterval(highlighting)
}

function gradualfade(cur2){
if (browserdetect=="mozilla" && cur2.style.MozOpacity<1)
cur2.style.MozOpacity=Math.min(parseFloat(cur2.style.MozOpacity)+0.1, 0.99)
else if (browserdetect=="ie" && cur2.filters.alpha.opacity<100)
cur2.filters.alpha.opacity+=10
else if (window.highlighting)
clearInterval(highlighting)
}

// End -->