startList = function() {
	// code for IE
	if(!document.body.currentStyle) return;
	var subs = document.getElementsByName('submenu');
	for(var i=0; i<subs.length; i++) {
		var li = subs[i].parentNode;
		if(li && li.lastChild.style) {
			li.onmouseover = function() {
				this.lastChild.style.visibility = 'visible';
			}
			li.onmouseout = function() {
				this.lastChild.style.visibility = 'hidden';
			}
		}
	}
}
window.onload=startList;

function goUp() {
	scroll(0,0)
}
function goBack() {
	history.back()
}
function javanofollow(sl,st,sc,sta) {
	return '<'+'a href="'+sl+'" '+sc+' '+sta+'>'+st+'</a>'
}

function OpenNewWin(sUrl,sWidth,sHeight)
{
 // IE
 var leftVal=(screen.width-sWidth)/2;
 var topVal=(screen.height-sHeight)/2;
 if(typeof(window.showModalDialog) != 'undefined'){
	window.open(sUrl, '', "width="+sWidth+", height="+sHeight+", left="+leftVal+", top="+topVal+", status=no, resizeable=no, scrollbars=no, modal=yes, dialog=yes, toolbar=no, titlebar=no, location=no, menubar=no");
 }
 // Mozilla
 else{
	window.open(sUrl, '', "width="+sWidth+", height="+sHeight+ ", left="+leftVal+", top="+topVal+", status=no, resizeable=no, scrollbars=no, modal=yes, dialog=yes");
 }
}