function win(url,name,features) {
    thiswindow = window.open(url,name,features);
    if (window.focus) {
        thiswindow.focus()
    }
}

