				
			preload('btnlogocustomers','/templates/v02/img/logo-healthcareproperties.gif');
			preload('btnlogooff','/templates/v02/img/logo-ventas.gif');

			
			function preload(imgObj,imgSrc) {
				if (document.images) {
					eval(imgObj+' = new Image()')
					eval(imgObj+'.src = "'+imgSrc+'"')
				}
			}

			function changeImage(imgName,imgObj) {
				if (document.images) {
					document.images[imgName].src = eval(imgObj+".src")
				}
			}
			

		function SubmitForm() {
			if (document.frmSearch.q.value != "") {
				document.frmSearch.submit();
				return true;
				
			}
			else {
				alert("Please enter a term to search for.");
				document.frmSearch.q.focus();
				return false;
			}
		}

