<!--
	if (document.images) {
		arImageSrc = new Array (
			'email',
			'skor',
			'bbc',
			'ccs',
			'hh',
			'type_skor',
			'type_bbc',
			'type_ccs',
			'type_hh',
			'arrow_l',
			'arrow_r'
		)
		arImageList = new Array ();
		for (counter in arImageSrc) {
			arImageList[counter] = new Image();
			arImageList[counter].src = 'img/nav_' + arImageSrc[counter] + '_on.gif';
		}
	}
	
	function rollOver(imgName) {
		document.images[imgName].src = 'img/nav_' + imgName + "_on.gif";
	}
	
	function rollOff(imgName) {
		document.images[imgName].src = 'img/nav_' + imgName + "_off.gif";
	}
	
	function createWindow (winURL,winName,winWidth,winHeight) {
		var winX = (screen.availWidth - winWidth) / 2;
		var winY = (screen.availHeight - winHeight) / 2;
		var winFeatures = '"resizable=no, width=' + winWidth + ', height=' + winHeight + ', screenX=' + winX + ', screenY=' + winY + ',left=' + winX + ', top=' + winY +'"';
		window.open (winURL,winName,winFeatures);
	}
//-->