// JavaScript Adinet
<!--
function ayuda()
{
	//http://ayuda.adinet.com.uy
open("http://ayuda.adinet.com.uy","Ayuda","resizable=no,scrollbars=yes,status=no,toolbar=no,directories=no,menubar=no,width=550,height=430")
}

function imprimir() {
window.print();  
}
//--> 
/*
<!--
function Abrir1(url, ancho, alto){
			window.open(url,"_blank","menubar=no,location=no,scrollbars=yes,resizable=no,top=0,left=0,width="+ancho+",height="+alto+",status=no");

		}

		function Abrir2(url, ancho, alto){
			window.open(url,"_blank","menubar=no,location=no,scrollbars=no,resizable=no,top=0,left=0,width="+ancho+",height="+alto+",status=no");

		}
		
		function Abrir_pie(){
			window.open("./contact/envioEmail.htm","_blank","menubar=no,location=no,scrollbars=no,resizable=no,top=0,left=0,width=360,height=350,status=no");

		}
*/
function calcHeight(nombreiframe)
{
  //halla la altura de la página interna
  /*var the_height=
    document.getElementById(nombreiframe).contentWindow.
      document.body.offsetHeight;

  //cambia la altura del iframe
  document.getElementById(nombreiframe).height=
      the_height;*/
	if (nombreiframe == "top") {
		document.getElementById(nombreiframe).height="298px";
	} else if(nombreiframe == "contenido") {
		document.getElementById(nombreiframe).height="2050px";
	} else if(nombreiframe == "noticias") {
		document.getElementById(nombreiframe).height="530px";
	} else if(nombreiframe == "pie") {
		document.getElementById(nombreiframe).height="295px";
	}
}
//-->