<!--

var sTargetURL = "http://www.mossmotorco.com/default.asp";

function doRedirect()
{
    setTimeout( "timedRedirect()", 5*1000 );
}

//  There are two definitions of 'timedRedirect', this
//  one adds to the visitors page history.
function timedRedirect()
{
    window.location.href = sTargetURL;
}

//-->

