<!--
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 dunWorkinCabin() {
CW=window.open('dunWorkinCabin.html','NewWin','toolbar=no,menubar=no,location=no,resizable=no,status=no,width=600,height=510,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 dunWorkinInt() {
CW=window.open('dunWorkinInterior.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 dunWorkinCabin2() {
CW=window.open('dunWorkinCabin2.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 dunWorkinCabin3() {
CW=window.open('dunWorkinCabin3.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);
}
// -->
