
function showCategory( szUrl, iUrl, iCatId )
{
  document.location=szUrl+"?url="+iUrl+"&id="+iCatId;
}

function closeImage()
{
  var imgWindow = document.getElementById( "galleryImage" );
        
  imgWindow.style.visibility = "hidden";
  imgWindow.style.width = "0px";
  imgWindow.style.height = "0px";
}

/*function showImage( szSrc, szCaption )
{
  var img = new Image;
  img.src = szSrc;

  var imgWindow = document.getElementById( "galleryImage" );

  imgWindow.style.visibility = "visible";
  // imgWindow.style.display = "none";
  imgWindow.style.width = img.width+"px";
  imgWindow.style.height = img.height+"px";

  var szContent="<table cellspacing=\"0\" cellpadding=\"1\" bgcolor=\"#C0C0C0\" border=\"0\"  width=\"125\"><tbody><tr><td align=\"left\" class=\"l_cell\">"+szCaption+"</td><td align=\"right\" class=\"r_cell\"><a href=\"javascript:closeImage();\"><img src=\"images/close.jpg\" name=\"close\" border=\"0\"></a></td></tr><tr><td class=\"cell\" colspan=\"2\"><img src=\""+szSrc+"\" name=\"popimage\"></td></tr></tbody></table>"
  
  document.getElementById("galleryImage").innerHTML=szContent;
  imgWindow.style.display = '';

  // document["popimage"].src = img.src;
  
}*/

function showImage( szSrc, szCaption )
{
  var wnd = window.open( szSrc, "image", "scrollbars=auto,status=no,width=640,height=480" );
}

