// JavaScript Document
function AbrirSitio() {
	Ancho = screen.width; 
	Alto = screen.height;
	Izquierda = (screen.width-Ancho)/2;
	Arriba= (screen.height-Alto)/2; 
	Ventana = window.open('main.html', "Avnet", 'width='+Ancho+',height='+Alto+',left='+Izquierda+',top='+Arriba+',fullscreen=yes,toolbar=0,location=0,directories=0,status=0,menubar=0,resizable=0,scrolling=0,scrollbars=0');
}
// ABRIR POPUP
function PopUpWindow(URL,Ancho,Alto) {
	Izquierda = (screen.width-Ancho)/2;
	Arriba= (screen.height-Alto)/2; 
	ventana = window.open(URL, "", 'width='+Ancho+',height='+Alto+',left='+Izquierda+',top='+Arriba+',fullscreen=no,toolbar=0,location=0,directories=0,status=0,menubar=0,resizable=0,scrolling=0,scrollbars=0');
}
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
// MOSTRAR O ESCONDER ELEMENTOS
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
function Mostrar(Nombre){
	Objeto=(document.all)?document.all[Nombre]:document.getElementById(Nombre);	
	Objeto.style.display='';
};
function Esconder(Nombre){
	Objeto=(document.all)?document.all[Nombre]:document.getElementById(Nombre);	
	Objeto.style.display='none';
};
