﻿$(function() {
    window.newWindow = function(url) {
        var width = screen.availWidth - 10;
        var height = screen.availHeight - 50;
        window.open(url, "newWin", "status=yes,width=" + width + ",height=" + height + ",resizable=yes,left=0,top=0,toolbar=no,menubar=no,scrollbars=yes,location=no,directories=no");
    };
});