		//<![CDATA[
		////////////////////////////////////////////////////////////////////////////
		function fnBid(argID){return document.getElementById(argID);}
		function fnBids(argID){return document.getElementById(argID).style;}
		
		//////////////////////////////////////////////////////////////////////////// BEGINNER
		// ##### START RESET
		// ##### DEPENDENCIES : fnBid, fnBids, fnForms
		// ##### NOTES :  makes dTorso,dLeft,dMiddle,dRight all the same height, especially needed if using AJAX
		var dTorsoMinHt=470; // default minimum height
		function fnReset(){
			fnBids('dTorso').height=fnBids('dLeft').height=fnBids('dMiddle').height=fnBids('dRight').height="auto";
			var vNewHt= Math.max(dTorsoMinHt,parseInt(fnBid('dLeft').offsetHeight,10),parseInt(fnBid('dMiddle').offsetHeight,10),parseInt(fnBid('dRight').offsetHeight,10)) + "px";
			fnBids('dTorso').height=fnBids('dLeft').height=fnBids('dMiddle').height=fnBids('dRight').height=vNewHt;
			fnForms();
		}
		// ##### END RESET
		
		///		//////////////////////////////////////////////////////////////////////////// BEGINNER
		// ##### START FORMS
		// ##### DEPENDENCIES : fnBid, fnBids
		// ##### NOTES : simple forms with test at http://www.qcadesign.com/testers/forms/default.asp?id=s2138799
		function fnForms(){


		}
		// ##### END FORMS
		////////////////////////////////////////////////////////////////////////////
	    /////////////////////////////////////////////////////////////////////////
		// ##### START START
		// ##### DEPENDENCIES : fnReset, fnBid, fnBids, fnForms
		// ##### NOTES :  makes dTorso,dLeft,dMiddle,dRight all the same height, especially needed if using AJAX
		function fnStart(){
			// This function runs only when the page is fully loaded.
            fnReset();
			// Setup timers
			gTimerSec = setInterval(fnTimeSec,1000); // starts page clock 1 sec

		}
		window.onload=fnStart;
	////////////////////////////////////////////////////////////////////////////
    //]]>
	



