var win=null;

onerror = stopError;
function stopError(){
	return true;
}


function popUp( url ){
	myleft=20;
	mytop=20;
	settings="width=640,height=480,top=" + mytop + ",left=" + myleft + ",scrollbars=no,location=no,directories=no,status=no,menubar=no,toolbar=no,resizable=no,dependent=no";
	win=window.open(url,"bookmark",settings);
	win.focus();

}




function addToFacebook()
{
	var url = document.location + "";
	var title = document.title;
		
	if(  url.charAt( url.length-1 ) == "#" )
	{
		url = url.substr(0, url.length-1);
	}
	
	var string = 'http://www.facebook.com/sharer.php?u='+url+'&t='+title;
	
	//	
	popUp ( string );
}

function addToMySpace()
{
	var url = document.location + "";
	var title = document.title;
		
	if(  url.charAt( url.length-1 ) == "#" )
	{
		url = url.substr(0, url.length-1);
	}

	var string = 'http://www.myspace.com/Modules/PostTo/Pages/?u='+url+'&t='+title;
	
	//	
	popUp ( string );
}

function emailThis()
{
	var url = document.location + "";
	var title = document.title;
		
	if(  url.charAt( url.length-1 ) == "#" )
	{
		url = url.substr(0, url.length-1);
	}
	
	alert(url);
	
	location.href = "mailto:?subject=" + title + "&body=" + url;
}

function addToStudiVZ()
{
	alert("studivz");
}

function addToDigg()
{
	var url = document.location + "";
	var title = document.title;
		
	if(  url.charAt( url.length-1 ) == "#" )
	{
		url = url.substr(0, url.length-1);
	}

	var string = 'http://www.addthis.com/bookmark.php?v=15&winname=addthis&pub=40seconds&s=digg&url='+url+'&title='+title;
	popUp ( string );
}
