startList = function() {
	if (document.all&&document.getElementById) {
		navRoot = document.getElementById("nav");
		for (i=0; i<navRoot.childNodes.length; i++) {
			node = navRoot.childNodes[i];
			if (node.nodeName=="LI") {
				node.onmouseover=function() {
					this.className+=" over";
				}
				node.onmouseout=function() {
					this.className=this.className.replace(" over", "");
				}
			}
		}
	}
}
window.onload=startList;

//<!-- Begin
function SeePic(img){
  pic1= new Image();
  pic1.src=(img);
  Control(img);
}
function Control(img){
  if((pic1.width!=0)&&(pic1.height!=0)){
    viewPic(img);
  }
  else{
    fonction="Control('"+img+"')";
    interval=setTimeout(fonction,20);
  }
}
function viewPic(img){
  pwid=pic1.width+20;
  phei=pic1.height+20;
  stringa="width="+pwid+",height="+phei;
  finestra=window.open(img,"",stringa);

}

var topPos = 100; 
var leftPos = 100; 
var wt = 0; 
var ht = 0; 


function WinOpen(m, n) 
{ 
if(screen) 
{
leftPos = (screen.width - m)/2; 
topPos = (screen.height - n)/2; 
wt = m; 
ht = n; 
}
w = window.open("apage.html","","location = 0, scrollbars = 0, status = 0, resizable = 0, top = "+topPos+", left = "+leftPos+", width = "+wt+", height = "+ht); 
} 
 

//  End -->

// <!-- Begin
function NewWindow(mypage, myname, w, h, scroll) {
var winl = (screen.width - w) / 2;
var wint = (screen.height - h) / 2;
winprops = 'height='+h+',width='+w+',top='+wint+',left='+winl+',scrollbars='+scroll+',resizable'
win = window.open(mypage, myname, winprops)
if (parseInt(navigator.appVersion) >= 4) { win.window.focus(); }
}
//  End -->
