function advertise ( )
{ document.write ( '<APPLET ALT="Advertisement" CODE="ImageFade2ech.class" WIDTH="425" HEIGHT="55" ARCHIVE="ImageFade2.jar">' +
	'<PARAM NAME="COPYRIGHT" VALUE="ImageFade applet, Copyright 1998, Eric Harshbarger">' +
	'<PARAM NAME="AUTHOR" VALUE="Eric Harshbarger, http://www.ericharshbarger.org">' +
	'<PARAM NAME="PAUSE" VALUE="3000">' +
	'<PARAM NAME="IMAGE.0" VALUE="http://www.truckinusa.com/ads2/banner_special_425x55.gif">' +
	'<PARAM NAME="IMAGE.1" VALUE="http://www.truckinusa.com/ads2/banner_software_425x55.gif">' +
	'<PARAM NAME="IMAGE.2" VALUE="http://www.truckinusa.com/ads2/bannerFHWA_425x55.gif">' +
	'<PARAM NAME="IMAGE.3" VALUE="http://www.truckinusa.com/ads2/banner_FTB_425x55.gif">' +
	'<param name="IMAGE.4" value="http://www.truckinusa.com/ads2/bannerBrokersNeeded_425x55.jpg">'+
	'<PARAM NAME="IMAGE.5" VALUE="http://www.truckinusa.com/ads2/banner_TB_425x55.gif">' +
	'<PARAM NAME="IMAGE.6" VALUE="http://www.truckinusa.com/ads2/bannerSchool_425x55.gif">' +
	'<PARAM NAME="IMAGE.7" VALUE="http://www.truckinusa.com/ads2/banner_LB_425x55.gif">' +
	'<PARAM NAME="URL.0" VALUE="http://www.truckinusa.com/special.html">' +
	'<PARAM NAME="URL.1" VALUE="http://fcds.affiliatetracking.net/al/a?2009">' +
	'<PARAM NAME="URL.2" VALUE="http://www.truckinusa.com/FHWAAuthority.html">' +
	'<PARAM NAME="URL.3" VALUE="http://www.truckinusa.com/Merchant2/merchant.mv?Screen=PROD&Store_Code=TOS&Product_Code=20-FTB">' +
	'<param name="URL.4" value="http://www.truckinusa.com/CIEAgent.html">' +
	'<PARAM NAME="URL.5" VALUE="http://www.truckinusa.com/Merchant2/merchant.mv?Screen=PROD&Store_Code=TOS&Product_Code=20-TB">' +
	'<PARAM NAME="URL.6" VALUE="http://www.truckinusa.com/CIE.html">' +
	'<PARAM NAME="URL.7" VALUE="http://www.truckinusa.com/Merchant2/merchant.mv?Screen=PROD&Store_Code=TOS&Product_Code=20-LB">' +
	'<PARAM NAME="TARGET" VALUE="_new">' +
	'</APPLET>' ) ;
}

function marquee ( )
{ document.write ( '<applet code="Marquee.class" width="550" height="18">' +
	'<param name="fps" value="28"></param>' +
	'<param name="message-displacement" value="2"></param>' +
	'<param name="font-size" value="14"></param>' +
	'<param name="font-italic" value="false"></param>' +
	'<param name="font-bold" value="true"></param>' +
	'<param name="font-color" value="#434888"></param>' +
	'<param name="background-color" value="#ffffff"></param>' +
	'<param name="font-family" value="Arial"></param>' +
	'<param name="message2" value="BECOME A BROKER NOW!  Buy our Books or Attend our School.  Become an agent for CIE."></param>' +
	'<param name="message3" value="Visit our store!  We have the largest selection of trucking related products on the internet, from software to tools."></param>' +
	'<param name="message4" value="Welcome to TruckinUSA, the on-line truckstop with an emphasis on the owner/operator."></param>' +
	'</applet>' ) ;
}

function chatHumanClick ( )
{ document.write ( '<a href="http://hc2.humanclick.com/hc/3926686/?cmd=file&file=visitorWantsToChat&site=3926686&byhref=1" target="chat3926686" onclick="window.open(\'http://hc2.humanclick.com/hc/3926686/?cmd=file&file=visitorWantsToChat&site=3926686\',\'chat3926686\',\'width=419,height=320\');return false;"><img src="http://hc2.humanclick.com/hc/3926686/?cmd=repstate&site=3926686&category=en;general;set-g&ver=1" name="hcIcon" style="width:113px;height:59px;border-width:0;" alt="Have Questions?  Click Here." /></a>' ) ;
}

function linkHumanClick ( )
{ document.write ( ' <a href="http://hc2.humanclick.com/hc/3926686/?cmd=PoweredByPage&site=3926686"><img src="http://hc2.humanclick.com/hc/3926686/?cmd=hccredit&site=3926686" style="width:106px;height:35;border-width:0;" alt="Human Click" /></a>' ) ;
}

function HTMLApplet ( code , archive , width , height )
{ this . params = [ ] ;
  this . name = "" ;
  this . code = code ;
  this . archive = archive ;
  this . width = width ;
  this . height = height ;
  this . addParam = function ( name , value )
	{ this . params [ this . params . length ] = new HTMLParam ( name , value ) ;
	}
  this . getHTML = function ( )
	{ var HTML = '<applet name="' + this . name + '" code="' + this . code + '" width="' + this . width + '" height="' + this . height + '" archive="' + this . archive + '">' ;
	  for ( var x = 0 ; x < this . params . length ; x++ )
		{ HTML += this . params [ x ] . getHTML ( ) ;
		}
	  HTML += '</applet>' ;
	  return HTML ;
	}
  this . write = function ( )
	{ document . write ( this . getHTML ( ) ) ;
	}
  this . setName = function ( name ) { this . name = name ; }
}

function HTMLParam ( name , value )
{ this . name = name ;
  this . value = value ;
  this . getHTML = function ( )
	{ var HTML = '<param name="' + this . name + '" value="' + this . value + '">' ;
	  return HTML ;
	}
}


//Status Bar Marquee

/*

var delimiter = "          " ;
var message = "Become an Agent for CIE!  Buy Books and Attend School." + delimiter +
	"Browse our Auction.  Post your items for free" + delimiter +
	"Visit our Store.  We have the largest selection of trucking items on the internet, from trucking software to tools!" + delimiter +
	"Looking for a job?  Fill out our Driver Application and we'll send it to our Recruiting Associates." + delimiter ;

function statusBarMarquee ( )
	{ var char ;
	  status = message ;
	  char = message . charAt ( 0 ) ;
	  message = message . substring ( 1 , message . length ) ;
	  message += char ;
	}

setInterval ( "statusBarMarquee ( ) " , 150 , "" ) ;
*/