
function openFullScreenWindow(url, id) {
    var w = window.open(
        url, id,
           "fullscreen=1"
        + ",screenX=0"
        + ",screenY=0"
        + ",width=" + screen.availWidth
        + ",height=" + screen.availHeight
        + ",scrollbars=0"
    );
    
    w.focus();
}