// var currentRef = 'http://www.c-a-m.com/flo';
var currentRef = 'http://www.phoenix247.co.uk';

// Set slideShowSpeed (milliseconds)
var slideShowSpeed = 15000

// Duration of crossfade (seconds)
var crossFadeDuration = 15

// Specify the image files
var Pic = new Array();
//Pic[0] = 'images/banner4.jpg';
//Pic[1] = 'images/banner3.jpg';
Pic[0] = 'images/phoenix247-banner.gif';
Pic[1] = 'images/phoenix247-banner.gif';
//Pic[2] = 'images/banner1.jpg';
//Pic[3] = 'images/cameron.jpg';

var Ref = new Array();
//Ref[0] = 'http://www.ufbltd.com';
//Ref[1] = 'http://www.pruftechnikdirect.com';
Ref[0] = 'http://www.phoenix247.co.uk';
Ref[1] = 'http://www.phoenix247.co.uk';
//Ref[2] = 'advertising.htm';
//Ref[3] = 'http://www.c-a-m.com/flo';

var t
var j = 0
var p = Pic.length

var preLoad = new Array();
for (i = 0; i < p; i++){
   preLoad[i] = new Image()
   preLoad[i].src = Pic[i]
}

function openBanner()
{
    if (currentRef == 'advertising.htm')
    {
        parent.location.href = 'advertising.htm';
    }
    else
    {
        eval("window.open('" + currentRef + "','')");
    }
}
function runSlideShow(){
   if (document.all){
      //document.images.SlideShow.style.filter="blendTrans(duration=2)"
      document.images.SlideShow.style.filter="blendTrans(duration=crossFadeDuration)"
      document.images.SlideShow.filters.blendTrans.Apply()
   }
   document.images.SlideShow.src = preLoad[j].src;
   currentRef = Ref[j];
   if (document.all){
      document.images.SlideShow.filters.blendTrans.Play()
   }
   j = j + 1
   if (j > (p-1)) j=0
   t = setTimeout('runSlideShow()', slideShowSpeed)
}
//window.onresize=body_resize ;
function body_resize()
{
	var iHeight = document.body.clientHeight - 20;
    tblMain.height = iHeight;
}
function navHome()
{
	location.href = 'index.htm';
}

