function showhide(id)
{
      subject = document.getElementById(id);
      subject.style.display = subject.style.display!='block' ? 'block' : 'none';
}

function new_win(img, name, width, height) {
      w1=window.open('','new_window','resizable=no,menubar=no,status=no,scrollbars=no,width='+width+',height='+height+'');
      w1.document.open();
      w1.document.write("<html><head><title>"+name+"</title></head><body leftmargin=0 topmargin=0>");
      w1.document.write("<a href='javascript:window.close()'><img src="+img+" width="+width+" height="+height+" border=0 alt='"+name+"'></a>");
      w1.document.write("</body></html>");
      w1.document.close();
    w1.focus();
}
