function openNewWindow(URLtoOpen, windowName, windowFeatures) {
        newWindow=window.open(URLtoOpen, windowName, windowFeatures);
}


function fullScreen(theURL) {
window.open(theURL, '', 'height=600, width=800, fullscreen=no, scrollbars=auto, menubar=no, toolbar=no');
}
