// header menufunction mover(id) {	document.getElementById(id).style.visibility = "visible" ;}function mout(id) {	document.getElementById(id).style.visibility = "hidden" ;}// onmousefunction change_img(o,img) {	var c = o.childNodes ;	for(var i=0;i<c.length;i++ ) if(c[i].nodeName=='IMG') { c[i].src = img ; break ; }}// popupnewWin1 = null;function popup(Name,title,X,Y){if(newWin1 != null && !newWin1.closed) {window.newWin1.close();}newWin1=window.open(Name , title,'width='+X+',height='+Y+',menubar=no,toolbar=no,location=no,directories=no,status=no,scrollbars=yes,resizaeable=no,left=200,top=10');}