<!--
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 alohaCabin2() {
CW=window.open('alohaCabin2.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 alohaInt() {
CW=window.open('alohaInterior.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 alohaCabin() {
CW=window.open('alohaCabin.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 alohaPorch() {
CW=window.open('alohaPorch.html','NewWin','toolbar=no,menubar=no,location=no,resizable=no,status=no,width=600,height=397,scrollbars=no')
        // change the figures of width and height above to customize the size of the window to be opened.
CW.moveTo(x,y);
}
// -->
