/* Hernán Elvira - 28/09/2005*/
function dimensiones(){
   if (screen.width == 800){
      modifica_imagenes(0.781);
      }
   if ((screen.width == 1024) || (screen.width == 1152)){
      modifica_imagenes(1);
      }
   if (screen.width == 1280){
      modifica_imagenes(1.25);
      }
   else{}
}

function modifica_imagenes(coeficiente){ 

 for (var n=0; n<document.images.length; n++){	

	if ((document.images[n].name == "banner") || (document.images[n].name == "principal2") || (document.images[n].name == "principal3") || (document.images[n].name == "principal4")){
   	 
	 }else{
	document.images[n].width = (document.images[n].width)*coeficiente;
  document.images[n].height = (document.images[n].height)*coeficiente;
	}
	}
}
