
<!-- Hide from old browsers
// Copyright &copy; 1999 Doug Popeney
// Created by Doug Popeney (easyjava@easyjavascipt.com)
// JavaScript Made Easy!! - http://www.easyjavascript.com




// These two numbers specify the number of banners you have in the rotation

i2nd = 7 
maxi2nd = 7 

// Banners


banner2nd1 = new Image();
banner2nd1.src = "http://www.fsea.com/banners/AD_Crown.jpg";
banner2nd2 = new Image();
banner2nd2.src = "http://www.fsea.com/banners/Samplead1.gif";
banner2nd3 = new Image();
banner2nd3.src = "http://www.fsea.com/banners/Samplead2.gif";
banner2nd4 = new Image();
banner2nd4.src = "http://www.fsea.com/banners/GOA-157x75.gif";
banner2nd5 = new Image();
banner2nd5.src = "http://www.fsea.com/banners/Signature.gif";
banner2nd6 = new Image();
banner2nd6.src = "http://www.fsea.com/banners/Brausse.gif";
banner2nd7 = new Image();
banner2nd7.src = "http://www.fsea.com/banners/BandRMOLL_LOGO_IFweb_153x75.jpg";


// Links

links2nd = new Array

links2nd[1] = "http://www.fsea.com/clickthrough/CrownRollLeaf.htm"
links2nd[2] = "http://www.dienamicmis.com"
links2nd[3] = "http://www.graphexpo.com"
links2nd[4] = "http://www.graphicsoftheamericas.com"
links2nd[5] = "http://www.fsea.com/clickthrough/Signature.htm"
links2nd[6] = "http://www.fsea.com/clickthrough/Brausse.htm"
links2nd[7] = "http://www.fsea.com/clickthrough/BandRMoll.htm"





function randombanner2nd(){
	var randomnumber2nd = Math.random();
	i2nd = Math.round( (i2nd - 1) * randomnumber2nd) + 1;
	document.banner2nd.src = eval("banner2nd" + i2nd + ".src");
}

function startTime2nd(){

        var time= new Date();
        hours= time.getHours();
        mins= time.getMinutes();
        secs= time.getSeconds();
        closeTime=hours*3600+mins*60+secs;
        closeTime+=1000;   
        Timer2nd();

}

function Timer2nd(){
        var time= new Date();
        hours= time.getHours();
        mins= time.getMinutes();
        secs= time.getSeconds();
        curTime=hours*3600+mins*60+secs
        if (curTime>=closeTime){
                if (i2nd < maxi2nd){
                        i2nd++;
                        document.banner2nd.src = eval("banner2nd" + i2nd + ".src");
                }
                else{
                        i2nd = 1;
                        document.banner2nd.src = eval("banner2nd" + i2nd + ".src");
                }
                startTime2nd();
        }
        else{
                window.setTimeout("Timer2nd()",1000)}

}

function clickLink2nd(){
        top.location = links2nd[i2nd]
}


// -->


