<!--
var curMenu = 0;
var Page = 0;
function navClikker(submenu,imgID,imgSrc) {
	curMenu = submenu.id;
		if (submenu.style.display =='') {
			submenu.style.display = 'none';			
		}
		else {
			for (var i=0; i <= intMenus; i++) {
				var x;
				x = imgSrc.substring(imgSrc.length-4);
				var mnuImage = document.all('mnu' + i + 'p')
				 mnuImage.src = mnuImage.src.substring(0,mnuImage.src.length-5) + "1" + x;
				 document.all('mnu' + i + '1').style.display = 'none';
				}
			
			imgID.src = imgSrc.substring(0,imgSrc.length-5) + "3" + x;
			submenu.style.display='';
		}
	}

function newsClikker(newstext,arrow) {
		if (newstext.style.display == '') {
			newstext.style.display = 'none';
			arrow.src= '/windowsce/media/arwnews' + arrow.style.color + '.gif';
		}
		else {
			for (var i=0; i <= intNews; i++) {
				var newsArrow = document.all('NEWS' + i + 'p')
				 newsArrow.src = '/windowsce/media/arwnews' + newsArrow.style.color + '.gif';
				 document.all('NEWS' + i + 'a').style.display = 'none';
				}
 			newstext.style.display='';
			arrow.src= '/windowsce/media/arwnews' + arrow.style.color + 'down.gif';
		}
	}

function ToolbarRed() {
	what = window.event.srcElement;
	if (what.tagName == "IMG") {
		what.src = what.src.substring(0,(what.src.indexOf(".gif"))) + "-red.gif";
		window.event.cancelBubble = true;
	}
}

function ToolbarWhite() {
	what = window.event.srcElement
	if (what.tagName == "IMG") {
		what.src = what.src.substring(0,(what.src.indexOf("-red.gif"))) + ".gif";
		window.event.cancelBubble = true;
	}
}

function mouseoverimg(imgname, source) {
if (imgname.complete) {
	x = source.substring(source.length-4)
	if ( (source.charAt(source.length-5) == "1")) {
	imgname.src = source.substring(0,source.length-5) + "2" + x;
	}
	else if (source.charAt(source.length-5) == "3") {}
	else {
	imgname.src = source.substring(0,source.length-4) + "2" + x;
	}
	}
}
 
function mouseoutimg(imgname, source, parent) {
if (imgname.complete) {
	if (parent == "") {
		if (source.charAt(source.length-5) == "3") {}
		else
		imgname.src = source.substring(0,source.length-5) + "1" + x;
		}
	else {
		x = source.substring(source.length-4)
		if ((source.charAt(source.length-5) == "3") && (curMenu == parent) || (parent.style.display != "none")) {
		imgname.src = source.substring(0,source.length-5) + "3" + x;
		}
		else {
		imgname.src = source.substring(0,source.length-5) + "1" + x;
		}
	}
	}
}

function mouseoverlink(link) {
	link.style.textDecorationUnderline = "True";

}

function mouseoutlink(link) {
	link.style.textDecorationNone = "True";
}
//-->
