/* Code by Gildas P. / www.gildasp.fr */ function set_deeplink(texte){ document.location="#"+texte; } function get_deeplink(){ if(window.location.href.indexOf('#')>=0){ hash = window.location.href.split('#')[1]; return hash; } else { return false; } } function set_title(texte){ document.title = texte; }
