var newAnamixWindow = null;
function new_window(url){
    if ((newAnamixWindow == null) || (newAnamixWindow.closed)) {
        newAnamixWindow = window.open(url, 'Anamix6', 'toolbar=0, location=0, directories=0, status=0, menubar=0, scrollbars=0, resizable=0, width=700, height=680, top=200, left=200')
        if (window.focus) {
            newAnamixWindow.focus();
        }
    }
    else {
        newAnamixWindow.focus();
    }
}
