<!--
x = parseInt(window.screen.width) / 2 - 300;  // the number 175 is the exact half of the width of the pop-up and so should be changed according to the size of the pop-up
y = parseInt(window.screen.height) / 2 - 225;  // the number 67 is the exact half of the height of the pop-up and so should be changed according to the size of the pop-up

function pineRestCabin() {
CW=window.open('pineRestCabin.html','NewWin','toolbar=no,menubar=no,location=no,resizable=no,status=no,width=600,height=450,scrollbars=no')
        // change the figures of width and height above to customize the size of the window to be opened.
CW.moveTo(x,y);
}

function pineRestInt() {
CW=window.open('pineRestInterior.html','NewWin','toolbar=no,menubar=no,location=no,resizable=no,status=no,width=600,height=450,scrollbars=no')
        // change the figures of width and height above to customize the size of the window to be opened.
CW.moveTo(x,y);
}

function pineRestCabin2() {
CW=window.open('pineRestCabin2.html','NewWin','toolbar=no,menubar=no,location=no,resizable=no,status=no,width=600,height=450,scrollbars=no')
        // change the figures of width and height above to customize the size of the window to be opened.
CW.moveTo(x,y);
}

function pineRestCabin3() {
CW=window.open('pineRestCabin3.html','NewWin','toolbar=no,menubar=no,location=no,resizable=no,status=no,width=600,height=450,scrollbars=no')
        // change the figures of width and height above to customize the size of the window to be opened.
CW.moveTo(x,y);
}
// -->
