function siteSearch() {
	var queryString = document.getElementById('query').value;

	location = "/search?search="+queryString;
}

 function NotifyUser(information, infoType)
        {
            var container = document.getElementById('NotifyContainer');
            container.innerHTML = information;
            container.className = 'Notifier ' + infoType;              
            container.style.display = 'block';            
            if (infoType == "info")            
                window.setTimeout(HideNotify, 3000);            
            else
                window.setTimeout(HideNotify, 2000);            
        } 
    
     function HideNotify()
        {            
            var container = document.getElementById('NotifyContainer');            
            container.style.display = 'none';
        }  