// RIGHTCOLUMN // Array of all Banner to be shown. // For More Informations read the Notes below var Banner = new Array ( '

Conformità sostenibile

', // Information insight '
Conformità sostenibile
', /* '

Accesso alle informazioni

', // Information insight '
Accesso alle informazioni
', */ // ORACLE ONE '

DISPONIBILE ON-LINE!

', '
Catalogo One
', // WEB SEMINAR '

Web seminar gratuiti

', '
Web seminar gratuiti
', // CONTACT '

Contattaci

', '
Contattaci

oppure mandaci una mail:

ic-italy_ww@oracle.com

', // EVENTS --> Event am 18.10.07 abgelaufen. Bei neuem Banner bestehende Grafik überschreiben. (teaser_events.jpg) //'

Oracle events

', //'
Events

Registrati subito!

', /* // CONOSCENZA '

Conoscenza e sicurezza

', '
Conoscenza
', */ // CUSTOMERS '

Le opinioni dei clienti

', '
Acciaierie Venete
', '
', '
', '
', '

Coordinamento e flessibilità per i sistemi di Acciaierie Venete: la risposta nelle soluzioni Oracle

', '

Acciaierie Venete

', '

I nostri clienti

', '
', '
', '
', '
', '
' ); // HOME ONLY!!! WILL BE ADDED AT THE END OF RIGHTCOLUMN var HomeBanner = new Array ( '' // Empty Entry ); /************* NOTES ************************************** DONT CHANGE FIRST AND LAST LINE OF THESE ARRAYS!!! Last Entry must be without "," at the end. ************************************************************/ /* DO NOT CHANGE EVERYTHING BELOW THIS LINE !!! ************************************************************/ // Hide static rightcolumn document.getElementById('rightcolumn').style.display = "none"; // Build Right-Column var banner = '
'; for(b = 0; b < Banner.length; b++){ banner += Banner[b]; } // Build special banners at the end of right column: Only for homepage if(document.getElementById('rightcolumn').className == 'home' && HomeBanner.lenght != 0){ for(hb = 0; hb < HomeBanner.length; hb++){ banner += HomeBanner[hb]; } } // End of Righcolumn banner += '
'; // Correct Imagepath: Only for homepage necessary if(document.getElementById('rightcolumn').className == 'home'){ banner = banner.replace(/\.\.\//g, ""); } document.write(banner);