if (document.images){
  nav1_off = new Image();  nav1_off.src = view_path+"images/nav1.jpg";
  nav1_on =  new Image();  nav1_on.src =  view_path+"images/nav1_on.jpg";
  nav2_off = new Image();  nav2_off.src = view_path+"images/nav2.jpg";
  nav2_on =  new Image();  nav2_on.src =  view_path+"images/nav2_on.jpg";
  nav3_off = new Image();  nav3_off.src = view_path+"images/nav3.jpg";
  nav3_on =  new Image();  nav3_on.src =  view_path+"images/nav3_on.jpg";
  nav4_off = new Image();  nav4_off.src = view_path+"images/nav4.jpg";
  nav4_on =  new Image();  nav4_on.src =  view_path+"images/nav4_on.jpg";
  nav5_off = new Image();  nav5_off.src = view_path+"images/nav5.jpg";
  nav5_on =  new Image();  nav5_on.src =  view_path+"images/nav5_on.jpg";
  
  
  
}





function roll(sname,rname){
    sname = id2elem(sname);
    sname.src = rname.src;
}
function id2elem(id) {
	if (typeof(id) != 'string') {
		return id;
	}
	if (document.getElementById) {
		id = document.getElementById(id);
	} else if (document.all) {
		id=document.all[id];
	} else {
		id = null;
	}
	return id;
}
function popup(url,width,height){
    nw = window.open(url,"newwindow","width="+width+",height="+height+",status=0,toolbar=0,menubar=0,scrollbars=1,resizable=1,location=0");
    nw.focus();
}

