var images = new Array();
images[0] = "http://www.expeditors.com/graphics/Expo_Banner.gif";
images[1] = "http://www.expeditors.com/graphics/Tradeflow_Banner.gif";
images[2] = "http://www.expeditors.com/graphics/Trace_Banner.gif";

var alttxt = new Array();
alttxt[0] = "Click to find out more about the exp.o(TM) internet tracking service";
alttxt[1] = "Click for more information on Expeditors Tradeflow(TM) program";
alttxt[2] = "Click for more information on Expeditors Trace(TM) program";

var urllink = new Array();
urllink[0] = "http://www.expeditors.com/bst/expo.asp";
urllink[1] = "http://www.expeditors.com/bst/Tradeflow.asp";
urllink[2] = "http://www.expeditors.com/bst/TRACE.asp";

function ShowImg()
{
	var number = images.length;
	var increment = Math.floor( Math.random() * number );
	var strTemp = '<a href="' + urllink[increment] + '"><img src="' + images[increment] + '" alt="' + alttxt[increment] + '" width="263" height="60" border="0"></a>';
	document.write( strTemp );
}

var rotate = 5000;
var count = 0;

function RotateImg( myImage )
{
	myImage.src=images[count];
	count++;
	if( count == images.length )
	{
		count = 0;
	}
	setTimeout( "RotateImg( myImage )", rotate );
}


function popup(a,f)
{
	b = "height=400,width=500,scrollbars=1,resizable=1";
	window.open(f,a,b)
}


function popoffice(u)
{
		a = "Expeditors";
		b = "height=348,width=550,scrollbars=0,resizable=1";
		window.open(u,a,b)
}
