function maininit(){

$('a.ticker1').click(function(){
        window.open(this.href,'popup','toolbar=no,width=800, height=600,resizable=false,top=40,scrollbars=yes');
        return false;
});

$('a.ticker2').click(function(){
        window.open(this.href,'popup','toolbar=no,width=800, height=600,resizable=false,top=40,scrollbars=yes');
        return false;
});

}