/* popup Viewer  [ write by tominaga ]
*******************************************************************************/
function popup(url,w,h){
	viewerObj = window.open('../image-view.php?i='+url, 'viewer','resizable=0,scrollbars=0,status=0,toolbar=0,width=' + w + ',height=' + h);

}




/* page Scroll To Top
*******************************************************************************/
var scrj = 1;
function toPageTop() {
   if(navigator.appName == "Microsoft Internet Explorer" && document.compatMode == "CSS1Compat")
      var scdist = document.body.parentNode.scrollTop;
   else
      var scdist = document.body.scrollTop;
   if(scrj<50 && scdist) {
      scdist = (scdist>2) ? Math.ceil(scdist*.2) : 1;
      scrj++;
      scrollBy(0,-scdist);
      setTimeout("toPageTop()",20);
   } else {
      scrollTo(0,0);
      scrj = 1;
   }
}



/* access report*/
function report(dir){
document.write("<img src='../cgi-bin/access/report.cgi?");
document.write("dir="+dir+"&amp;");
document.write("pix=",screen.width,"x",screen.height,"&amp;");
document.write("ref=",document.referrer);
document.write("' width='1' height='1' alt=''>");
}

