<!--
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 hummingbirdCabin() {
CW=window.open('hummingbirdCabin.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 hummingbirdInt() {
CW=window.open('hummingbirdInterior.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 hummingbirdCabin2() {
CW=window.open('hummingbirdCabin2.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 hummingbirdPorch() {
CW=window.open('hummingbirdPorch.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);
}
// -->
