function OpenWindow(url, name, features){
    var win = window.open(url, name, features, true);
    win.focus();
}
