		    /* <![CDATA[ */
    	    <!--

			// Show / Hide Div
            function showhidediv(myReference, show)
            {
                if(show=='true')
                {
	                if (myReference!=null){
	                    if( myReference.style){ //DOM
		                    myReference.style.visibility = 'visible';
		                    myReference.style.display = 'inline';
	                    }else if( myReference.visibility ){ //Netscape
		                    myReference.visibility = 'show';
		                    myReference.display = 'inline';
	                    }
	                }
                }else
                {
                    if (myReference!=null){
                        if( myReference.style ){ //DOM
			                myReference.style.visibility = 'hidden';
			                myReference.style.display = 'none';
	                    }else if( myReference.visibility ){ //Netscape
		                    myReference.visibility = 'hide'
		                    myReference.display = 'none';
	                    }
	                }
                }
            }

            //Get the width of the current window...
            function getWindowWidth() {
                var windowWidth = 0;
                if (typeof(window.innerWidth) == 'number') {
	                windowWidth = window.innerWidth;
	            }
	            else {
	                if (document.documentElement && document.documentElement.clientWidth) {
		                windowWidth = document.documentElement.clientWidth;
	                }
	                else {
                        if (document.body && document.body.clientWidth) {
			                windowWidth = document.body.clientWidth;
		                }
	                }
                }
	            return windowWidth;
            }
			
			
			//Get the height of the current window...
            function getWindowHeight() {
                var windowHeight = 0;
                if (typeof(window.innerHeight) == 'number') {
	                windowHeight = window.innerHeight;
	            }
	            else {
	                if (document.documentElement && document.documentElement.clientHeight) {
		                windowHeight = document.documentElement.clientHeight;
	                }
	                else {
                        if (document.body && document.body.clientHeight) {
			                windowHeight = document.body.clientHeight;
		                }
	                }
                }
	            return windowHeight;
            }



		    //Client Side Date Function
			function doClock()
			{
				var objDate=new Date();
			
				var arrArgs=doClock.arguments;
			
				var strDate="";
				var intIndex;
				var str2ndChar;
			
				var arrMonths=new Array('January','Jan', 'February','Feb', 'March','Mar', 'April','Apr', 'May','May', 'June','Jun', 'July','Jul', 'August','Aug', 'September','Sep', 'October','Oct', 'November','Nov', 'December','Dec');
				var arrDays= new Array('Sunday','Sun','Monday','Mon', 'Tuesday','Tue', 'Wednesday','Wed','Thursday','Thr','Friday','Fri','Saturday','Sat');
			
				for(intIndex=0;intIndex<arrArgs.length;intIndex++)
				{
					str2ndChar=arrArgs[intIndex].charAt(1);

					switch (arrArgs[intIndex].charAt(0))
					{

						case "M" :
							if ((Number(str2ndChar)>1) && ((objDate.getMonth()+1)<10))
								strDate += "0" + objDate.getMonth()+1
							else
								strDate += arrMonths[objDate.getMonth()*2+Number(str2ndChar)];
							break;
			
						case "D": // Date
							if ((Number(str2ndChar)==1) && (objDate.getDate()<10))
								strDate += "0";
			
							strDate += DDtoDay(objDate.getDate());
							break;
			
						case "Y": // Year
							strDate += (str2ndChar=='0') ? objDate.getFullYear() : objDate.getFullYear().toString().substring(2);
							break;
			
						case "W": // Day of week
							strDate += arrDays[objDate.getDay()*2+Number(str2ndChar)];
							break;
			
						default:
							strDate += unescape(arrArgs[intIndex]);

					}
				}

				return strDate;
			}
			
			//Date suffix
			function DDtoDay(intInDate)
			{
				var arrDateSuffix = new Array('','st','nd','rd','th','th','th','th','th','th','th','th','th','th','th','th','th','th','th','th','th','st','nd','rd','th','th','th','th','th','th','th','st');
				var intTempDate = parseInt(intInDate);
				var strReturnDate = '';
			  
				if (intTempDate >= 1 && intTempDate <= 31)
				{
				  strReturnDate = intInDate + arrDateSuffix[intTempDate];
				}
				return strReturnDate;
			}
			
			//Opens a new window
			function newWin(strURL, strName, intWidth, intHeight, strParam)
			{
				intWidth+=80;
				intHeight+=130;
			
				var iScrnHght = window.screen.height;
				var iScrnWidth = window.screen.width;
			
				if(intHeight > (iScrnHght  - 150))
				{
					intHeight = (iScrnHght  - 150);
				}
			
				if(intWidth > (iScrnWidth  - 150))
				{
					intWidth = (iScrnWidth  /2) + 200;
				}
			
				var intLeft =(window.screen.width/2-(intWidth/2));
				var intTop =(iScrnHght/2-(intHeight/2))-50;
				
				var newWin = window.open(strURL, strName, strParam + ',left='+ intLeft + ',top=' + intTop + ',width=' + intWidth + ',height=' + intHeight);
			
				newWin.focus();
			}

			//Get Div
            function getRefToDiv(divID)
			{
				if( document.layers )
				{ //Netscape layers
					return document.layers[divID];
				}
				if( document.getElementById )
				{ //DOM; IE5, NS6, Mozilla, Opera
					return document.getElementById(divID);
				}
				if( document.all )
				{ //Proprietary DOM; IE4
					return document.all[divID];
				}
				if( document[divID] )
				{ //Netscape alternative
					return document[divID];
				}
				return false;
			}
			//Show hide Divs
			function showDiv(divID_off,divID_on,flashFile)
			{
				if (divID_on=='waitmsg'){window.location="#pagetop";}
				
    			var myReference = getRefToDiv(divID_off);
				if (myReference!=null){
                    if( myReference.style ){ //DOM
	    				myReference.style.visibility = 'hidden';
		    			myReference.style.display = 'none';
				    }else if( myReference.visibility ){ //Netscape
					    myReference.visibility = 'hide'
					    myReference.display = 'none';
				    }
				}

				var myReference = getRefToDiv(divID_on);
				if (myReference!=null){
				    if( myReference.style){ //DOM
					    myReference.style.visibility = 'visible';
					    myReference.style.display = 'inline';
				    }else if( myReference.visibility ){ //Netscape
					    myReference.visibility = 'show';
					    myReference.display = 'inline';
				    }

                    var FO = { movie:flashFile, width:"342", height:"22", majorversion:"6", build:"0" };
                    UFO.create(FO, "wait");
				}
			}


           // window.onload = function(){
			    //setFooter();
		   // }

    	   // window.onresize = function(){
			    //setFooter();
		   // }


			//-->
			/* ]]> */
