/*
  $Id: JavaScripts.js,v 1.3 2005/06/30 17:08:01 gbiersteker Exp $
  www.kokenmetrenske.nl
  Copyright 2004 by Auxilium Software Development
  http://www.auxilium-sd.nl
*/

function loadImage(sImg, Width, Height) {
	NewWindow = window.open('image.asp?img=' + sImg, 'image','width=' + Width + ',height=' + Height + ',toolbar=0,location=0,directories=0,status=0,menuBar=0,scrollBars=0,resizable=0,screenX=50,screenY=50,top=50,left=50');
	NewWindow.focus();
}

function toggleDisplay(sObjectName){
	var obj = document.all(''+sObjectName+'');
	if (obj.style.display == ''){
		obj.style.display = 'none';
	} else {
		obj.style.display = '';
	}
}