function SubWinYoko(name){
    var Win1=window.open("","_blank","width=640,height=480");
    Win1.opener=self;
    Win1.document.clear();
    if(navigator.appVersion.charAt(0)>=3){Win1.focus()};
    Win1.document.write("<html><head><meta http-equiv=\"Content-Type\" content=\"text/html; charset=Shift_JIS\"><title>Sub Window</title></head>");
    Win1.document.write("<body leftmargin=\"0\" topmargin=\"0\" marginwidth=\"0\" marginheight=\"0\">");
    Win1.document.write("<img src="+name+" width=640>");
    Win1.document.write("</body></html>");
    Win1.document.close();
}
function SubWinTate(name){
    var Win1=window.open("","_blank","width=480,height=640");
    Win1.opener=self;
    Win1.document.clear();
    if(navigator.appVersion.charAt(0)>=3){Win1.focus()};
    Win1.document.write("<html><head><meta http-equiv=\"Content-Type\" content=\"text/html; charset=Shift_JIS\"><title>Sub Window</title></head>");
    Win1.document.write("<body leftmargin=\"0\" topmargin=\"0\" marginwidth=\"0\" marginheight=\"0\">");
    Win1.document.write("<img src="+name+" width=480>");
    Win1.document.write("</body></html>");
    Win1.document.close();
}