// открывает новое окноfunction MM_openBrWindow(theURL,winName,features) {    winName = '_blank';    if ( features == '' ) {        window.open(theURL,winName);    } else {        window.open(theURL,winName,features);    }}