function init() {
}

 function noSpam(user, domain) {
    locationstring = "mailto:" + user + "@" + domain;
    window.location = locationstring;
  }
function loadStory(linkToStory, width, height) {
        story = open(linkToStory,"storyWindow","left=0,top=0,toolbar=yes,location=no,directories=no,status=yes,menubar=yes,scrollbars=yes,resizable=yes,width="+width+",height="+height);
}
function loadFull(linkToStory) {
        var width = screen.availWidth;
        var height = screen.availHeight;
        story = window.open(linkToStory,"storyWindow", "left=0, top=0, toolbar=no,location=no,directories=no,status=yes,menubar=no,scrollbars=no,resizable=yes,width="+width+",height="+height);
}



