
/*
 *
 */

var Standard;

/*
 *
 */

Standard = {};

/*
 *
 */

Standard.Window = {};

Standard.Window.New = function(url, id, width, height) {
    var le = (screen.width) ? (screen.width - width) / 2 : 0;
    var to = (screen.height) ? (screen.height - height) / 2 : 0;
    var se = 'height='+height+',width='+width+',top='+to+',left='+le+',scrollbars=yes,resizable=no,status=yes';
    window.open(url, id, se);
    return false;
}

Standard.Window.NewG = function(url, id, width, height) {
    var le = (screen.width) ? (screen.width - width) / 2 : 0;
    var to = (screen.height) ? (screen.height - height) / 2 : 0;
    var se = 'height='+height+',width='+width+',top='+to+',left='+le+',scrollbars=yes,resizable=no,status=yes';
    window.open(url, id, se);
}

/*
function mailto(addr) {
    window.location = 'mailto:' + mailparse(addr) + '?subject=';
    return;
}

function mailparse(addr) {
    addr = addr.replace(/\[(.*?)\]/, '@');
    addr = addr.replace(/\[(.*?)\]/, '.');
    return addr;
}
*/
