function transparent(element)
{
    if(/MSIE (5\.5|6).+Win/.test(navigator.userAgent)) 
    {
        var src = element.src;
        element.src = spacer_path; 
        if (src) element.runtimeStyle.filter = "progid:DXImageTransform.Microsoft.AlphaImageLoader(src='" + src + "',sizingMethod='scale')";
    }
}

function showPic(pic, width, height)
{ 
  sDesrc = "width=" + width + ", height=" + height +
  		", status=no, toolbar=no, menubar=no, scrollbars=no";
  win=window.open("Gallery", "", sDesrc);
  win.document.write("<html><style>body{padding:0px;margin:0px;}</style><body>");
  win.document.write("<img src='" + gallery_path + pic + "' width='" + width + "' height='" + height + "'><br>");
  win.document.write("</body></html>");
  win.document.close();
}
