<!-- Banner.js - Copyright &copy 2004 Cimarron Valley Solutions, All Rights Reserved
/*
 creates a table with site logo or name and rotating banner image.
 inputs: path=relative/abs path to banner images, ArrayName=name of array in the Banner_list.js file
*/
function doBanner(Path,ArrayName){
document.write("<table width='800' border='0' cellspacing='0' cellpadding='2'><tr>   <td>")

document.write("<table width='100%' border='0' cellspacing='0' cellpadding='0'>        <tr><td width='75%' bgcolor='#000000'>")

document.write("<span class='CompanyName' >&nbsp;&nbsp;Cimarron           Valley Solutions</span><br>")

document.write("<a href='" + CVS_RootURL + "/CVS/" + "' class='navbutton' >&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;www.cimval.com</a></td>")

document.write("<td  width='300' height='65' background='" + fnImgServer(Path,ArrayName) + "' nowrap >&nbsp;")

document.write("</td></tr></table></td></tr></table>")

} // end function
-->