<!---
bName = navigator.appName;
bVer = parseInt(navigator.appVersion);
var bCanRollover=0
var step_Count=0;
if ((bName == "Netscape" && bVer >= 3) ||
 (bName == "Microsoft Internet Explorer" && bVer >= 4))
   bCanRollover=1;

function rollOver(imgID,newTarget)
{
if (bCanRollover)
 document[imgID].src=newTarget;
}

function highlight(div,color){

	if(document.all) eval('document.all.'+div+'.style.backgroundColor="'+color+'"')

	if(document.layers) eval('document.layers.'+div+'.bgColor="'+color+'"')

}
function RunSlideShowCover(pictureName,imageFiles,displaySecs)
{
  var imageSeparator = imageFiles.indexOf(";");
  var nextImage = imageFiles.substring(0,imageSeparator);  
  if (document.all)
  {
    document.getElementById(pictureName).style.filter="blendTrans(duration=2)";
    document.getElementById(pictureName).filters.blendTrans.Apply();    
  }
  document.getElementById(pictureName).src = nextImage;  
  if (document.all)
  {
    document.getElementById(pictureName).filters.blendTrans.Play();    
  }
  var futureImages= imageFiles.substring(imageSeparator+1,imageFiles.length)
    + ';' + nextImage; 
  setTimeout("RunSlideShowCover('"+pictureName+"','"+futureImages+"',"+displaySecs+")",
    displaySecs*1000);
}

function RunSlideShow(pictureName,pictureCaption,imageFiles,imageCaption,displaySecs)
{
  var imageSeparator = imageFiles.indexOf(";");
  var captionSeparator= imageCaption.indexOf("|");
  var nextImage = imageFiles.substring(0,imageSeparator);
  var nextCaption = imageCaption.substring(0,captionSeparator);
  if (document.all)
  {
    document.getElementById(pictureName).style.filter="blendTrans(duration=2)";
    document.getElementById(pictureName).filters.blendTrans.Apply();
    document.getElementById(pictureCaption).style.filter="blendTrans(duration=2)";
    document.getElementById(pictureCaption).filters.blendTrans.Apply();
  }
  document.getElementById(pictureName).src = nextImage;
  document.getElementById(pictureCaption).innerHTML=nextCaption;
  if (document.all)
  {
    document.getElementById(pictureName).filters.blendTrans.Play();
    document.getElementById(pictureCaption).filters.blendTrans.Play();
  }
  var futureImages= imageFiles.substring(imageSeparator+1,imageFiles.length)
    + ';' + nextImage;
  var futureCaption= imageCaption.substring(captionSeparator+1,imageCaption.length)
    + '|' + nextCaption;
  setTimeout("RunSlideShow('"+pictureName+"','"+pictureCaption+"','"+futureImages+"','"+futureCaption+"',"+displaySecs+")",
    displaySecs*1000);
}
function RunSlideShowHome(pictureName,imageFiles,displaySecs)
{
  var imageSeparator = imageFiles.indexOf(";");  
  var nextImage = imageFiles.substring(0,imageSeparator);  
  if (document.all)
  {
    document.getElementById(pictureName).style.filter="blendTrans(duration=2)";
    document.getElementById(pictureName).filters.blendTrans.Apply();    
  }
  document.getElementById(pictureName).src = nextImage;  
  if (document.all)
  {
    document.getElementById(pictureName).filters.blendTrans.Play();    
  }
  var futureImages= imageFiles.substring(imageSeparator+1,imageFiles.length)
    + ';' + nextImage;
  setTimeout("RunSlideShowHome('"+pictureName+"','"+futureImages+"',"+displaySecs+")",
    displaySecs*1000);
}
function RunSlideShowHomeStepByStep(pictureName,imageFiles,displaySecs)
{
  if (step_Count==9)
  {
	  step_Count=0;
  }
  step_Count=step_Count+1;  
  var imageSeparator = imageFiles.indexOf(";");  
  var nextImage = imageFiles.substring(0,imageSeparator);  
  if (document.all)
  {
    document.getElementById(pictureName).style.filter="blendTrans(duration=2)";
    document.getElementById(pictureName).filters.blendTrans.Apply();    
  }
  document.getElementById(pictureName).src = nextImage;  
  if (document.all)
  {
    document.getElementById(pictureName).filters.blendTrans.Play();    
  }
  var futureImages= imageFiles.substring(imageSeparator+1,imageFiles.length)+ ';' + nextImage;  
  if (step_Count==1 || step_Count==4 || step_Count==7)
  {
	  setTimeout("RunSlideShowHomeStepByStep('Slide01','"+futureImages+"',"+displaySecs+")",displaySecs*1000);
  }
  if (step_Count==2 || step_Count==5 || step_Count==8)
  {
	  setTimeout("RunSlideShowHomeStepByStep('Slide02','"+futureImages+"',"+displaySecs+")",displaySecs*1000);
  }
  if (step_Count==3 || step_Count==6 || step_Count==9)
  {
	  setTimeout("RunSlideShowHomeStepByStep('Slide03','"+futureImages+"',"+displaySecs+")",displaySecs*1000);
  }   
  
   
  //alert (step_Count);
}
// --->
