	function setClassName(objId, className) {
		document.getElementById(objId).className = className;
	}
	
	function showRow(eID) {
		document.getElementById(eID).style.display = "block";
	}
	
	function hideRow(eID) {
		document.getElementById(eID).style.display = "none";
	}

	function openImageWindow(URL, width, height) {
		var image = URL;

		msgWindow = window.open('','Nieuw', 'width=' + width + ' height=' + height + 'scrollbars=0 resize=0 scrollbars=no resizeable=no');
		msgWindow.document.open('text/html');
		msgWindow.document.write('<html><head><title>Jota Joti</title><head>');
		msgWindow.document.write('<body leftmargin="0" topmargin="0">');
		msgWindow.document.write('<img src="' + URL + '">');
		msgWindow.document.write('</body></html>');
		msgWindow.resizeTo(width, height);
		msgWindow.document.close();
	}
	
	function showProgress(eID) {
		document.getElementById(eID).style.display = "block";
	}