function addBookmark(title,url) 
{	
	if (window.sidebar) 
	{ // Mozilla Firefox Bookmark
		alert("Press CTRL + D to bookmark this page");
		//window.sidebar.addPanel(title, url,"");
	} 
	else if( window.external ) 
	{ // IE Favorite
		window.external.AddFavorite(url, title); 
	}
	else if(window.opera && window.print) 
	{ // Opera Hotlist
		return true; 
	}
}

function shareEmbedCode(in_playing_file)
{
	
	/*
	
	TB_show(
		"Copy and paste this code into your site/blog",
		"http://tour.pornstarslikeitbig.com/t1/sharecode.php?width=520&height=400&file="+in_playing_file
	);

	*/
	
	MOOdalBox.open(
		"http://tour.pornstarslikeitbig.com/t1/sharecode.php?file="+in_playing_file,
		"Copy and paste this code into your site/blog",
		"520 400"
	);
}