<!-- 複数のウインドウ指定 -->
<!-- frame link

var urls = new Array("", "photo/stmini_01.html", "photo/ss_01.html", "photo/m_01.html", "photo/l_01.html", "photo/rj_01.html");
var remote = null;
function newwin(url) {
        remote = window.open('', 'newwin', 'width=650,height=600,scrollbars=1,resizable=yes');
        if (newwin != null) {
                remote.location.href = url;
                remote.focus()
        }

}
function newwin800(url) {
        remote = window.open('', 'newwin', 'width=800,height=800,scrollbars=1,resizable=yes');
        if (newwin != null) {
                remote.location.href = url;
                remote.focus()
        }

}

function newwin900(url) {
        remote = window.open('', 'newwin', 'width=900,height=700,scrollbars=1,resizable=yes');
        if (newwin != null) {
                remote.location.href = url;
                remote.focus()
        }

}


function newwin2(url) {
        remote = window.open('', 'newwin2', 'width=710,height=710,scrollbars=0,resizable=no');
        if (newwin != null) {
                remote.location.href = url;
                remote.focus()
				remote.scroll(300,450);
        }

}

//end -->
<!--
function closepage(n){
w = window.close();
}
//-->
