// open formulier in nieuw scherm
function inloggen(f)
{
	gebruikersnaam = f.gebruikersnaam.value;
	wachtwoord = f.wachtwoord.value;
	var url = 'inloggen.php' + '?gebruikersnaam=' + gebruikersnaam + '&wachtwoord=' + wachtwoord + '';
	var width = 720; 
	var height = 700;
	var screenX = (screen.width/2 - width/2);
	var screenY = (screen.height/2 - height/2);
	var features= "width=" + width + ",height=" + height;
	features += ",screenX=" + screenX + ",left=" + screenX;
	features += ",screenY=" + screenY +",top=" + screenY+", scrollbars=1";
	f.submit();
	var mywin=window.open(url, "popup", features);
	
	return true;
}
 
// open popup voor myapura
function Venster(URL)
{
	venster = window.open(URL, 'popupvenster', 'width=720,height=700,resizable=no,menubar=no,scrollbars=1,status=no,toolbar=no');
}


//
function ExplorerFix() 
{ 
	for (a in document.links) document.links[a].onfocus = document.links[a].blur; 
} 
	if (document.all) document.onmousedown = ExplorerFix;