
/******************************************************
Scripts
===========================
Copyright (c) 2000 by mars69 (mars69@people.cz)
*******************************************************/

function SelectCount(what,countbox) {
	//element = document.getElementById(what);
	for( var i=0,count=0; i<what.length; i++ ) {
		count += ( what.options[i].selected ? 1 : 0 )
	}	
	document.getElementById(countbox).value = count;
	//eval('what.form.'+countbox+'.value = '+count+'');
}

