<!--
function printBanner(color, banner_tab, lvl_frm_root) {

var relativepath = '';	//default if level==0
lvl_frm_root = lvl_frm_root*1;	//convert to number if string value; produces NaN if invalid.
if(isNaN(lvl_frm_root)) lvl_frm_root=0;
if(lvl_frm_root==-1)	relativepath = "http://www.worthyshorts.com/";	//if level=-1, anything using relative path should set to main domain
while(lvl_frm_root>0) { relativepath +='../'; lvl_frm_root--; }		//otherwise add correct # of "../"s

document.write('<img src="'+relativepath+'banner_art/full_'+color+'_'+banner_tab+'.jpg" usemap="#ban_map" width="1024">');
document.write('<map name="ban_map">');
if(banner_tab!=1)	document.write('<area shape="rect" coords="10,5,85,55" href="'+relativepath+'WS-defined.html" alt="Overview">');
if(banner_tab!=2)	document.write('<area shape="rect" coords="86,5,190,55" href="'+relativepath+'WS-books.html" alt="The Books">');
if(banner_tab!=3)	document.write('<area shape="rect" coords="191,5,300,55" href="'+relativepath+'WS-process.html" alt="The Process">');
if(banner_tab!=4)	document.write('<area shape="rect" coords="735,5,835,55" href="'+relativepath+'WS-bookshop.html" alt="Bookshop">');
if(banner_tab!=5)	document.write('<area shape="rect" coords="836,5,920,55" href="'+relativepath+'ebooks/main.php" alt="eBooks">');
if(banner_tab!=6)	document.write('<area shape="rect" coords="921,5,1015,55" href="'+relativepath+'WS-about-us.html" alt="About Us">');
document.write('<area shape="rect" coords="0,56,1024,155" href="'+relativepath+'WS-splash.html" alt="Splash">');
document.write('</map>');
}
//-->
