function sendDel()
{
var url = "http://delicious.com/save?url=";


var url_val = escape(this.location.href);

var connector = "&amp;";
var ptitle = "title=";
var ptitle_val = escape(document.title); 

var whereto = url + url_val + connector + ptitle + ptitle_val;

var w = window.open(whereto, '_blank');

w.location.href = whereto; 
}
