$().ready(function() {
  $('#fbut').click(function() { 
    $('#uploadMessage').fadeIn('normal');
    $('fbut').attr('disabled', 'disabled' );
    $('fbut').attr('value', 'processing ...');
    return true;

  }); 
});

function CreateBookmarkLink() {
     title = "Text to speech"; 
     url = "http://www.text2speech.org";
	    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; }
     }
