function SubWinOpenC(name){

    var Win0=window.open("","subwin","width=600,height=515");

    Win0.opener=self;

    Win0.document.clear();

    if(navigator.appVersion.charAt(0)>=3){Win0.focus()};

    Win0.document.write("<html><head><meta http-equiv=\"Content-Type\" content=\"text/html; charset=Shift_JIS\"><title>subwin</title></head>");

    Win0.document.write("<body bgcolor=\"#FFFFFF\" text=\"#000000\" leftmargin=\"0\" topmargin=\"0\" marginwidth=\"0\" marginheight=\"0\">");

    Win0.document.write("<img src="+name+" width=600>");

    Win0.document.write("<form><center><input type=button value='Close' onClick='window.close()'></center></form></p>");

    Win0.document.write("</body></html>");

    Win0.document.close();

}

function SubWinOpenC1(name){

    var Win1=window.open(name,"subwin","width=600,height=580");
    Win1.focus();
}

function SubWinOpenC2(name){

    var Win2=window.open("","subwin","width=495,height=420");

    Win2.moveTo(window.screen.width/2-250,window.screen.height/2-200);

    Win2.opener=self;

    Win2.document.clear();

    if(navigator.appVersion.charAt(0)>=3){Win2.focus()};

    Win2.document.write("<html><head><meta http-equiv=\"Content-Type\" content=\"text/html; charset=Shift_JIS\"><title>subwin</title></head>");

    Win2.document.write("<body bgcolor=\"#FFFFFF\" text=\"#000000\" leftmargin=\"0\" topmargin=\"0\" marginwidth=\"0\" marginheight=\"0\">");

    Win2.document.write("<img src="+name+" >");

    Win2.document.write("<form><center><input type=button value='Close' onClick='window.close()'></center></form></p>");

    Win2.document.write("</body></html>");

    Win2.document.close();

}
