function MenuOn(obj)
	{
		obj.bgColor = '#E8E8E8';
		obj.style.cursor = 'hand';
	}

	function MenuOff(obj)
	{
		obj.bgColor = '#FFFFFF';
		obj.style.cursor = 'default';
	}

	function MenuGo(url)
	{
		window.open(url);
	}
	
	
function myOpen(page,width,height) {
    if (navigator.appName == 'Netscape') {
        adjWidth = width + 20;
        adjHeight = height + 20;
    }
    else {
        adjWidth = width + 50;
        adjHeight = height + 150;
    }
    
    window.open(page,'windowName','width=' + adjWidth + ',height=' + adjHeight + ',toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no');
}

function myOpen2(page,width,height,desplazamiento) {
    if (navigator.appName == 'Netscape') {
        adjWidth = width + 20;
        adjHeight = height + 20;
    }
    else {
        adjWidth = width + 50;
        adjHeight = height + 150;
    }
    
    window.open(page,'windowName','width=' + adjWidth + ',height=' + adjHeight + ',toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes');
}