 function CreateBookmarkLink() {

 title = "Transsexual fantasies"; 
  // Blogger - Replace with <$BlogItemTitle$> 
  // MovableType - Replace with <$MTEntryTitle$>

 url = "http://www.transsexualfantasies.com/";
  // Blogger - Replace with <$BlogItemPermalinkURL$> 
  // MovableType - Replace with <$MTEntryPermalink$>
  // WordPress - <?php bloginfo('url'); ?>

    if (window.sidebar) { // Mozilla Firefox Bookmark
        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 hideSplash(){
    expires = 365;
    
    var today = new Date();
    today.setTime(today.getTime());
    var expires_date = new Date(today.getTime() + (expires* 1000 * 60 * 60 * 24 ));
    document.cookie = 'tf_splash_screen=1'+';expires='+expires_date.toGMTString();
    
    $('splash_out').style.display = 'none';
    $('splash').style.display = 'none';
}

function getCookie(name){
    var cookieValue = document.cookie;
    var r = new RegExp("\\b"+name+"\\b");
    var cookieStart = cookieValue.search(r);
    if(cookieStart == -1)
        cookieValue = null;
    else
	{
	    cookieStart = cookieValue.indexOf("=", cookieStart)+1;
	    cookieValue = unescape(cookieValue.substr(cookieStart, 1));
        }
	
	return cookieValue;
}