/***********************************************
* Bookmark site script- © Dynamic Drive DHTML code library (www.dynamicdrive.com)
* This notice MUST stay intact for legal use
* Visit Dynamic Drive at http://www.dynamicdrive.com/ for full source code
***********************************************/

/* Modified to support Opera */
function bookmark_add(i_title) {

  // Assume the URL is accurately reported in the browser location bar
  var myURL = location.href;
  var myTitle = unescape(i_title);
  
  if (window.sidebar) { // firefox
    window.sidebar.addPanel(myTitle, myURL, "");
  }
  
  else if(window.opera && window.print){ // opera
    var elem = document.createElement('a');
    elem.setAttribute('href',myURL);
    elem.setAttribute('title',myTitle);
    elem.setAttribute('rel','sidebar');
    elem.click();
  } 

  else if(document.all) { // ie
    window.external.AddFavorite(myURL, myTitle);
  }
  
}

function location_reset() {
  document.title = "Designstor -- your designs live here";
  location.href = "#";
}


function location_update(i_sectionname, i_projectname, i_filename, i_title) {
  document.title = i_title;
  location.href = "#section=" + i_sectionname + "?project=" + i_projectname + "?filename=" + i_filename;
}
