//window document


function openWindow1() {
         window.open("./princess/1st.phtml","1","width=500,height=300,resizable=yes");
}

function openWindow2() {
         window.open("./princess/2nd.phtml","2","width=500,height=300,resizable=yes");
}

function openWindow3() {
         window.open("./princess/3rd.phtml","3","width=500,height=300,resizable=yes");
}

function openWindow4() {
         window.open("./princess/4th.phtml","4","width=500,height=300,resizable=yes");
}



function closeWindow(){
         window.close();
}
function printWindow(){
         window.print();
}
function historyBack(){
         history.back();
}