<!--
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 pineConeCabin() {
CW=window.open('pineConeCabin.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 pineConeInt() {
CW=window.open('pineConeInterior.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 pineConeCabin2() {
CW=window.open('pineConeCabin2.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 pineConeCabin3() {
CW=window.open('pineConeCabin3.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);
}
// -->
