function activateSystem()
	{
		window.location.assign("Pages_Lib/AboutMEGAnet.php");
	}
	
function deactivateSystem()
	{
		document.getElementById("startNote").style.display = "Block";
	}

function goTo(name)
	{
		var iFile = name;
		window.location.assign(iFile);
	}

function HighLight(status)
	{
		if(status=="On")
		{
			this.bgcolor="red";
		}
		else
		{
			this.bgcolor="white";
		}
	}

function openNews(newsFilename, redirect)
	{
		window.open (newsFilename, 
            "MEGAnetNews", 
            "width=400px, height=600px, menubar=0, location=0, status=0, titlebar=0, toolbar=0, scrollbar=Yes, resizable=1"
        );
        
        goTo(redirect);
        
	}
	
function submitContactForm()
	{
		var Man1 = document.getElementById("name");
		
		if(Man1.value=="")
		{
			alert("Please Enter Your Name");
			return;
		}
		
		var Man2 = document.getElementById("position");
		
		if(Man2.value=="")
		{
			alert("Please Enter Your Position");
			return;
		}
		
		var Man3 = document.getElementById("company");
		
		if(Man3.value=="")
		{
			alert("Please Enter Your Company");
			return;
		}
		
		var Man4 = document.getElementById("telephone");
		
		if(Man4.value=="")
		{
			alert("Please Enter Your Telephone");
			return;
		}
		
		var Man5 = document.getElementById("address");
		
		if(Man5.value=="")
		{
			alert("Please Enter Your Address");
			return;
		}
		
		document.getElementById("contactForm").submit();
	}	
	
	
	