<!--

ss = new slideshow('ss');
ss.prefetch = 8;
ss.timeout = 2000;

s = new slide();
s.src = 'pics/amisol.jpg';
s.link = 'pics/amisol.htm';
s.title = 'Amisol';
s.text = '';
ss.add_slide(s);

s = new slide();
s.src = 'pics/fimox.jpg';
s.link = 'pics/fimox.htm';
s.title = 'Fimox';
s.text = '';
ss.add_slide(s);

s = new slide();
s.src = 'pics/imbac.jpg';
s.link = 'pics/imbac.htm';
s.title = 'Imbac';
s.text = '';
ss.add_slide(s);

s = new slide();
s.src = 'pics/tps.jpg';
s.link = 'pics/tps.htm';
s.title = 'TPS';
s.text = '';
ss.add_slide(s);

s = new slide();
s.src = 'pics/thalidon.jpg';
s.link = 'pics/thalidon.htm';
s.title = 'Thalidon';
s.text = '';
ss.add_slide(s);

s = new slide();
s.src = 'pics/insulingrp.jpg';
s.link = 'pics/insulgrp.htm';
s.title = 'Insulin';
s.text = '';
ss.add_slide(s);

s = new slide();
s.src = 'pics/enoparin.JPG';
s.link = 'pics/enoparin.htm';
s.title = 'Enoparin';
s.text = '';
ss.add_slide(s);




// The following loop sets an attribute for all of the slides.
// This is easier than setting the attributes individually.

for (var i=0; i < ss.slides.length; i++) {

  s = ss.slides[i];
  s.target = "slideshow_popup";
  s.attr = "width=680,height=490,resizable=yes,scrollbars=yes";
}

// Display an alert to remind people to donate

var show_popup = true;
function showpopup() {
  // Display a message (once)
  if (show_popup) {
    show_popup = false;
    alert("Try Again");
  }
}

//-->