function detail(name){  var url = name; window.open(url, "_new","scrollbars=yes, status=yes, toolbar=no, resizable=yes, location=no, top=10, left=10, width=620px, height=620px"); }

var max_items = 2; var menu_showed = 0;

function ShowMenu( id ) {
if (menu_showed != id) {
HideMenu();
document.getElementById('menu'+id).style.visibility='visible';
menu_showed = id; }
}

function ViewMenu( id ) {
if (menu_showed != id) {
HideMenu();
document.getElementById('menu'+id).style.visibility='visible';
menu_showed = id; }
}

function HideMenu( ) {
var id;
for (id=1; id<=max_items; id++) {
document.getElementById('menu'+id).style.visibility='hidden'; }
menu_showed = 0;
}

function over(img,ref){ document.images[img].src=ref;}
function out(img,ref){ document.images[img].src=ref;}
