
//DELL.ICO.US
function getURL() {
	var str = window.document.URL.toString();
	var deb = str.split('?');
	var newTitle = encodeURIComponent(document.title.toString());
    u = deb[0];
	if(deb[1]){
		u += "?"+deb[1];
	}
	u1 = encodeURIComponent(u) + "&jump=doclose";
	news1 = "http://del.icio.us/post?url="+u1+"&amp;title="+newTitle;
	window.open(news1,"_blank","toolbar=no, location=yes, directories=no, status=no, menubar=no, scrollbars=no, resizable=no, copyhistory=yes, width=800, height=600");
    return true;      
}
//DIGG
function getdiggURL() {
	var str = window.document.URL.toString();
    var deb = str.split('?');
	var newTitle = encodeURIComponent(document.title.toString());
	u = deb[0];
	if(deb[1]){
		u += "?"+deb[1];
	}
	u1 = encodeURIComponent(u);
	news1 = "http://digg.com/submit?phase=2&url="+u1+"&title="+newTitle;
	
	window.open(news1,"_blank");
	return true;      
}
//FACEBOOK
function getfacebookURL() {
	var str = window.document.URL.toString();
	var deb = str.split('?');
	var newTitle = encodeURIComponent(document.title.toString());
    u = deb[0];
	if(deb[1]){
		u += "?"+deb[1];
	}
	u1 = encodeURIComponent(u);
	news1 = "http://www.facebook.com/pages/emka-TECHNOLOGIES/130135760225?url="+u1+"&amp;title="+newTitle;
	window.open(news1,"_blank");
    return true;      
}
//REDDIT
function getredditURL() {
	var str = window.document.URL.toString();
	var deb = str.split('?');
	var newTitle = encodeURIComponent(document.title.toString());
	
	u = deb[0];
	if(deb[1]){
		u += "?"+deb[1];
	}
	u1 = encodeURIComponent(u);
	news1 = "http://reddit.com/submit?url="+u1+"&title="+newTitle;
	
	window.open(news1,"_blank");
	return true;      
}