// JavaScript Document
function printBookmark()
{
    var book;
    book ='<span class="bookmark_con">\
<a href="javascript:void(0)" title="Favorites" alt="Favorites">\
<span class="favorites1"  onclick="return addBookmark(this);"></span>\
</a>\
<a target="_blank" alt="Del.icio.us" title="Del.icio.us"  href="http://del.icio.us/post?url='+window.location.href+'&title='+encodeURIComponent(document.title)+'"><span class="delicious1"></span></a>\
<a target="_blank"  alt="Digg it!"  title="Digg it!"  href="http://digg.com/submit?phase=2&amp;url='+window.location.href+'&title='+encodeURIComponent(document.title)+'"><span class="digg1"></span></a>\
<a target="_blank" alt="StumbleUpon" title="StumbleUpon"  href="http://www.stumbleupon.com/submit?url='+window.location.href+'&title='+encodeURIComponent(document.title)+'"><span class="stumbleupon1"></span></a>\
<a target="_blank"  alt="Google" title="Google"  href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk='+window.location.href+'&title='+encodeURIComponent(document.title)+'"><span class="google1"></span></a>\
<a target="_blank"  alt="Myspace" title="Myspace" href="http://www.myspace.com/Modules/PostTo/Pages/?u='+window.location.href+'&t='+encodeURIComponent(document.title)+'"><span class="mypace1"></span></a>\
<a target="_blank"  alt="Facebook" title="Facebook" href="http://www.facebook.com/sharer.php?u='+window.location.href+'&t='+encodeURIComponent(document.title)+'"><span class="pacebook1"></span></a>\
<a target="_blank"  alt="Reddit" title="Reddit" href="http://reddit.com/submit?url='+window.location.href+'&title='+encodeURIComponent(document.title)+'"><span class="reddit1"></span></a>\
</span>\
';

document.write(book);
}
function copy(thetext, copiedNotifier) 
{
	if (window.clipboardData) 
	{
		window.clipboardData.setData("Text",thetext);		
	} else 
	{
		var copier = 'copier';
		if(!document.getElementById(copier)) {
			var mydiv = document.createElement('div');
			mydiv.id = copier;
			document.body.appendChild(mydiv);
		}
		document.getElementById(copier).innerHTML = '';
	}
	
	document.getElementById(copiedNotifier).innerHTML = 'Copied';	
}