function off (name) {
  document[name].src='images/nav/'+name+'.gif';
}
function on (name) {
  document[name].src='images/nav/'+name+'_.gif';
}

function off_inside (name) {
  document[name].src='../images/nav/'+name+'.gif';
}
function on_inside (name) {
  document[name].src='../images/nav/'+name+'_.gif';
}

function offb (name) {
  document[name].src='images/'+name+'.jpg';
}
function onb (name) {
  document[name].src='images/'+name+'_.jpg';
}

function offb_inside (name) {
  document[name].src='../images/'+name+'.jpg';
}
function onb_inside (name) {
  document[name].src='../images/'+name+'_.jpg';
}

function newWindow(picname) {
newWin= open("", "displayWindow", "width=400, height=576, status=no, toolbar=no, menubar=no");
newWin.document.open();
newWin.document.write("<html><title>Switched On</title><body bgcolor='#FFFFFF' leftmargin='0' topmargin='0' rightmargin='0' bottommargin='0' marginwidth='0' marginheight='0'><a href='#' onClick=window.close()><img src=\""+picname+"\" width='400' height='576' alt='Click to close the Window' border='0'></a></body></html>");
newWin.document.close();
newWin.focus();
return false;
}