// JavaScript source
// by AIM Productions, Edward Brosens
// (c)2011
var gn = "demo"
var li = "498860d27e4ead11a34aec7e61481fb3c20e9c0f"; // vodemo




function aanmelden() {
	var nm = document.getElementById('naam').value;
	var wwi = $.sha1(document.getElementById('ww').value);
	
		if ((nm == 'demo') && (wwi == li))	{
			alert('OK!');
		} else {
			alert('Gebruikersnaam en/of wachtwoord onjuist.');
		}
}

function openStart() {
window.location = "index.php";	
}

function openOver() {
window.location = "over.php";	
}

function openContact() {
window.location = "contact.php";	
}

function openTools() {
window.location = "tools.php";	
}
