function index_DoFSCommand( command, args ) { // if u will have FSCommands in any script use this example } function DoNothing( ) { } function PrintArticle( ) { window.open( '/printer/', '_printer_', "width=636,height=431,toolbar=no,location=no,directories=no,scrollbars=yes,statusbar=no,status=no,resizable=no" ).focus( ); } function openCenterWindow( url, wd, ht, scroll ) { d = ( screen.width - wd )/2; h = ( ( screen.height-ht )/2 ); window.open(url,'','top=' + h + ',left=' + d + ',width=' + wd + ',height=' + ht + ',toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=' + scroll + ',resizable=' + scroll + '').focus(); } function doArticleEmail( ) { openCenterWindow( '/send-email/', 400, 221, 'no' ); } //---------------------------------------------- function changeContent( oldContentID, newContentID ){ odlContentObject = document.getElementById( oldContentID ); newContentObject = document.getElementById( newContentID ); if (odlContentObject && newContentObject) { odlContentObject.innerHTML = newContentObject.innerHTML; } else { return; } }