function show(id)
{
     if (document.getElementById(id).style.display == 'none')
     {
          document.getElementById(id).style.display = 'block';
     }
}
function hide(id)
{
     if (document.getElementById(id).style.display == 'none')
     {
          document.getElementById(id).style.display = 'none';
     }
     else
     {
          document.getElementById(id).style.display = 'none';
     }
}
function PopupPic(sPicURL) 
{
     window.open( "popup.htm?"+sPicURL, "",  
     "resizable=1,scrollbars=yes,HEIGHT=200,WIDTH=200");
}
