<!--

function bookmark( pic, name, mainurl, titlestr, textlink )
{
	document.write("<a target=\"_blank\" href='" + mainurl + document.location.href);
	if (titlestr != "")
	{
		document.write( titlestr+document.title );
	}
	document.write( "' title='Share on " + name + "' >" );
	
	document.write("<img border='0' align='texttop' src='");
	
	document.write("../images/bookmarking/" + pic +"' >" );
	
	if (textlink != "")
	{
		document.write( " " + textlink);
	}
	document.write( "</a> &nbsp;&nbsp;");
}


//-->

