var backColorOver = "#ddd";
		var backColorOut = "";
		 function tblBrandOver(iMe)
		 {
		 iMe.style.cursor='hand';
		 var pic = document.getElementById('img_btn_dropdown');
		 var tbl = document.getElementById('tblBrand');
		 if (tbl.style.display=='none')
					pic.src='images/btn_dropdown_hover.gif';
			else if (tbl.style.display=='inline')
					pic.src='images/btn_dropdownClose_hover.gif';
			}
		 
		 function tblBrandOut(iMe)                                                                                                                                                               
		 {
		 var pic = document.getElementById('img_btn_dropdown');
		 var tbl = document.getElementById('tblBrand');
		 if (tbl.style.display=='none')
		 		 pic.src='images/btn_dropdown.gif';
		 else if (tbl.style.display=='inline')
						pic.src='images/btn_dropdownClose.gif';
		 }
		 
		 function tblBrandUp()
		 {
		 var tbl = document.getElementById('tblBrand');
		 var pic = document.getElementById('img_btn_dropdown');
		 if (tbl.style.display =='none')
				{
					tbl.style.display='inline';
					pic.src='images/btn_dropdownClose.gif';
		  }
		  else if (tbl.style.display == 'inline')
		  {
		  tbl.style.display='none';
		  pic.src="images/btn_dropdown.gif";
		  }
		 }
			function brandOver(iMe)
			{
				document.getElementById('imgBrandLogo').src='images/logo_'+iMe.innerHTML.replace(/\s+/g,'')+'.gif';
				document.getElementById('input0').value=iMe.innerHTML;
				iMe.style.background='#ddd';
			}
			function brandOut(iMe)
			{
			document.getElementById('imgBrandLogo').src='http://www.belkin.com/includes/graphics/spacer.gif';
			iMe.style.background='';
			}
			function modelOver(iMe, h, w, d)
			{
			iMe.style.background=backColorOver;
			if (!document.getElementById('radMeasure_0').checked)
				{
				h=h/0.3937;
				w=w/0.3937;
				d=d/0.3937;
				}
				document.getElementById('boxHeight').value=h;
				document.getElementById('boxWidth').value=w;
				document.getElementById('boxDepth').value=d;
				document.getElementById('btnDimensionGo').style.visibility='visible';
		 }
			function modelOut(iMe)
			{
			iMe.style.background=backColorOut;
			}
			function chkFloat()
			{
				document.getElementById('btnDimensionGo').style.visibility='visible';
			}
