function NewOdnaknopka3() {
this.domain=location.href+'/';
this.domain=this.domain.substr(this.domain.indexOf('://')+3);
this.domain=this.domain.substr(0,this.domain.indexOf('/'));
this.location=false;
this.selection=function() {
var sel;
if (window.getSelection) sel=window.getSelection();
else if (document.selection) sel=document.selection.createRange();
else sel='';
if (sel.text) sel=sel.text;
return encodeURIComponent(sel);
}
this.url=function(system) {
var title=encodeURIComponent(document.title);
var url=encodeURIComponent(location.href);
switch (system) {
case 1: return 'http://vkontakte.ru/share.php?url='+url;
case 2: return 'http://connect.mail.ru/share?share_url='+url;
case 3: return 'http://www.facebook.com/sharer.php?u='+url;
case 4: return 'http://twitter.com/home?status='+title+' '+url;
case 5: return 'http://www.livejournal.com/update.bml?event='+url+'&subject='+title;
}
}
this.redirect=function() {
if (this.location) location.href=this.location;
this.location=false;
}
this.init=function() {
var titles=new Array('Vkontakte', 'Mail.ru', 'Facebook', 'Twitter', 'LiveJournal');
var html='';
html+='';
for (i=0;i<8;i++) {
html+='<noindex><a href="'+this.url(i+1)+'" onclick="return odnaknopka3.go('+(i+1)+');" target="_blank"><img src="http://g-moto.ru/templates/ave/images/blank.gif" width="34" height="34" alt=" #" title="'+titles[i]+'" style="border:0;padding:0;margin:0 9px 0 0;background:url(http://g-moto.ru/templates/ave/images/social.png) no-repeat 0px -'+(i*35)+'px"/></a></noindex>';
}
document.write(html);
}
}
odnaknopka3=new NewOdnaknopka3();
odnaknopka3.init();

