function hilight(n){   id="mc"+n;   
 el=document.getElementById(id);   
 el.style.backgroundColor="#C2C4D4";  
 el=document.getElementById("u"+id);  
 el.style.backgroundColor="#AEB0C4";
}
function unhilight(n){   
  id="mc"+n;   
  el=document.getElementById(id);   
  el.style.backgroundColor="#AEB0C4";   
  el=document.getElementById("u"+id);   
  el.style.backgroundColor="#C2C4D4";
}
function showItem(d){   
 location=d;
}
function openWindow(link,w,h){
var w=window.open(link,'Image','toolbar=no,location=no,directories=no,status=no,menubar=no,resizable=yes,scrollbars=yes,width='+w+',height='+h);
w.moveTo(0,0);
}  
