var screenWidth;
var screenHeight;

screenHeight = top.screen.availHeight;
screenWidth = top.screen.availWidth; 


function fullScreen(theURL) {
window.open(theURL, '', 'fullscreen=yes, scrollbars=yes, width=' + screenWidth + ', height=' + screenHeight +'' );
window.opener = top;
window.close();
}
