var newwin = null;

function ShowPhoto(ffile,fwidth,fheight,tfile,twidth,theight){
    var fpath="http://kishu.okkys.com/images/"+ffile;
    var tpath="http://kishu.okkys.com/images/"+tfile;

    var htm="";
    
//    htm+="<!-- ";
    htm+="<a ";
    htm+=" style='cursor : pointer;'";
    htm+=" onclick='ZoomPhoto(\""+fpath+"\","+fwidth+","+fheight+");'";
    htm+=">";
    htm+="<img src='"+tpath+"' width='"+twidth+"' height='"+theight+"' border='0' />";
    htm+="</a>";
//    htm+=" //-->";
    
    document.write(htm);
    document.close(htm);
}

function ZoomPhoto(fpath,width,height){
    var wwidth=eval(width+0);
    var wheight=eval(height+0);

    if(newwin && !newwin.closed) {
        newwin.close();
    }
    
    newwin=window.open("","KishuPhoto","height="+wheight+",width="+wwidth+",location=no,menubar=no,resizable=no,titlebar=yes,toolbar=no");
    newwin.document.open();

    htm="";
    htm+="<html>\n";
    htm+="<title>キシュウアルバム</title>\n";
    htm+="<body style='margin:0px;padding:0px;background-color:silver;'>\n";
    htm+="<img style='margin:0px;padding:0px;' src='"+fpath+"' width='"+width+"' height='"+height+"'>\n";
    htm+="</body>\n";
    htm+="</html>";
    newwin.document.write(htm);
    newwin.document.close();
    newwin.focus();

    iswin = true;
}
