// JavaScript Document
<!--
//Bookmark this site
function bookmarksite(title, url){
if (document.all)
window.external.AddFavorite(url, title);
else if (window.sidebar)
window.sidebar.addPanel(title, url, "")
}

//Send email to Alex
function sendemail () {
      locationstring = 'mai' + 'lto:' + 'alex' + '@' + 'neatorama' + '.' + 'com?subject=Neatorama';
      window.location.replace(locationstring);
      }

//Send email to Store	  
function sendemailstore () {
      locationstring = 'mai' + 'lto:' + 'info' + '@' + 'neatorama' + '.' + 'com?subject=Neatorama Store';
      window.location.replace(locationstring);
      }

//Expand and collapse a div, must have defined style with display:none in collapsed div
function expandCollapse() {
for (var i=0; i<expandCollapse.arguments.length; i++) {
var element = document.getElementById(expandCollapse.arguments[i]);
element.style.display = (element.style.display == "none") ? "block" : "none";	}
}

-->
