// JavaScript Document

/* access
	<!--//
		var message="YOU DO NOT HAVE PERMISSION";
		function click(e)
			{
				if (document.all) 
					{
						if (event.button==2||event.button==3||event.button==4) 
							{
								alert(message);
								return false;
							}
					}
				if (document.layers) 
					{
						if (e.which == 3) 
							{
								alert(message);
								return false;
							}
					}
			}
		if (document.layers) 
			{
				document.captureEvents(Event.MOUSEDOWN);
			}
		document.onmousedown=click;
	//--> */

/* login */
	<!--//
		function newWindow(mypage, myname, w, h)
			{
				 var winl = (screen.WIDTH - w) / 2;
				 var wint = (screen.HEIGHT - h) / 2;
				 winprops = 'HEIGHT='+h+',WIDTH='+w+',top='+wint+',left='+winl;
				 win = window.open(mypage, myname, winprops);
			}
		function login()
			{
				if(navigator.appName == 'Microsoft Internet Explorer')
					{
						newWindow('gatekeeper.htm','Internet',360,270);
					}
				else
					{
						newWindow('gatekeeper.htm','Internet',360,270);
					}
			}
	//-->