// Elementos javascript

var NS4 = (navigator.appName.indexOf("Netscape")>=0 && !document.getElementById)? true : false;
var IE4 = (document.all && !document.getElementById)? true : false;
var IE5 = (document.getElementById && document.all)? true : false;
var NS6 = (document.getElementById && navigator.appName.indexOf("Netscape")>=0 )? true: false;
var W3C = (document.getElementById)? true : false;

// Precarga imágenes genéricas.
var imagenes=new Array('ofertaSemana/ofertaSemana.php?ajuste=pequeno',
					   	'images/entorno/visor/donde.jpg',
						'images/entorno/visor/reparto.jpg',
						'images/entorno/visor/carta.jpg',
						'images/entorno/visor/cumple.jpg',
						'images/entorno/visor/galeria.jpg',
						'images/entorno/visor/sugerencias.jpg');
function carga_imagenes() {
		for(i=0;i<imagenes.length;i++) 
			MM_preloadImages(imagenes[i]);
}
function indicaPantalla(){
//alert("largo: "+screen.availHeight+"\nancho: "+screen.availWidth);
var pantalla=screen.availWidth;
if((pantalla<1024) || (!document.all))
   document.body.style.overflow="auto";

 window.moveTo(0,0);
if (document.all) {
     window.resizeTo(screen.availWidth,screen.availHeight);
	 if(pantalla>=1024)
	 	document.body.style.overflow="hidden";
} 
}