function writeLinks(){

    divRef=document.getElementById('links_bar');//referinta la div-ul in care sunt link-urile
    divRef.innerHTML='<span class="class1"><a href="http://craigslistinfo.info">Craigs List<\/a></span> | <span class="class1"><a href="http://www.cell-phonelookup.info" target="_blank" >Reverse Cell Phone Lookup</a></span>  | <span class="class1"><a href=http://de.rakecontribution.com title=rakeback>Rakeback</a></span> | <span class="class1"><a href="http://www.consultsites.com/">Websites For Sale</a></span> | <span class="class1"><a href="http://www.consult-soft.co.uk/">Websites For Sale</a></span> | <span class="class1"><a href="http://www.unlock-the-iphone.com">Unlock iPhone 3G</a></span> | <span class="class1"><a href="http://www.webhostbutler.com/business-web-hosting.htm">Business Web Hosting</a></span> ';
} 


//ie
if(window.attachEvent){
    window.attachEvent('onload',writeLinks);
}
//browserele care respecta recomandarile w3c
else{
    window.addEventListener('load',writeLinks,false);
}


