/*** DIMENSION LA VENTANA AL TAMAÑO DE LA PANTALLA DEL USUARIO**/
function Dimensionar() {
		var  intHeigth, intWidth
		window.moveTo(0,0);
		intHeigth = window.screen.availHeight - 160;
		intWidth = window.screen.availWidth  - 125;
		window.resizeBy(intWidth , intHeigth);
	}

/*** IIMPIDE QUE SE HAGA CLICK DERECHO EN LA VENTANA DEL EXPLORADOR ***/
	function Derecha(e) {
/*	 if (e.which == 3 || e.which == 2) {alert('Botón derecho inhabilitado, perdonen las molestias')} */
		/*if (navigator.appName == 'Netscape' && (e.which == 3 || e.which == 2)){
		alert('Botón derecho inhabilitado, perdonen las molestias')
			return false;
		}*/
		// Ese es para internet explore si se quiere mostrar mensaje
		/*else if (navigator.appName == 'Microsoft Internet Explorer' && (event.button == 2)){
		alert('Botón derecho inhabilitado, perdonen las molestias')
			return false; 
		}*/
	}