<!--

/* Podswietlanie aktywnych elementow formularza */

function Active(what) { 
   if(!document.layers) {	
      what.style.backgroundColor='#FFFFFF'
   }
}

function NotActive(what) {
   if(!document.layers) { 
      what.style.backgroundColor='#CCCCCC'
   }
}

function StatusStart() {
	window.defaultStatus = "International Conference on Computer Vision and Graphics 2004"
	return true
}

function Highlight(what) {
	if(!document.layers) {
		what.style.backgroundColor='#444444'
		what.style.color='#FFFF99'
	}
}

function Lowlight(what) {
	if(!document.layers) {
		what.style.backgroundColor='#666666'
		what.style.color='#FFFFFF'
	}
}
-->