<!--
//storyWindow popup 250x182//
function sw(url) {
 story=window.open(url, 'emailWindow','toolbars=0,directories=0,menubar=0,status=0,scrollbars=0,location=0,resizable=1,width=250,height=200');
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=1,resizable=1,width='+width+',height='+height);
if (parseInt(navigator.appVersion.charAt(0), 10)>=3 && !(navigator.appName.indexOf('Explorer')>0));
  {
story.focus();
  }
}
//-->
