<!--
// AFePub.com//
//flexable story window popup//
function sw(url) {
 story=window.open(url, 'StoryWindow','toolbars=0,directories=0,menubar=0,status=0,location=0,scrollbars=1,resizable=1,width=350,height=240');
if (parseInt(navigator.appVersion.charAt(0), 10)>=3 && !(navigator.appName.indexOf('Explorer')>0));
  {
story.focus();
  }
}
//fixed width picture popup//
function pic(url,width,height) {
 story=window.open(url, 'PictureWindow','toolbars=0,directories=0,menubar=0,status=0,location=0,scrollbars=0,resizable=0,width='+width+',height='+height);
if (parseInt(navigator.appVersion.charAt(0), 10)>=3 && !(navigator.appName.indexOf('Explorer')>0));
  {
story.focus();
  }
}
//-->