/*
* @version		$Id: extravote.js 2008 vargas $ @package Joomla
*/
function showSearchResults()
{
    var searchText = document.getElementById('srch_fld').value;
	var currentURL = window.location;
	var live_site = currentURL.protocol+'//'+currentURL.host;
	var lsXmlHttp;
	var div = document.getElementById('searchResults');
	var closebtn ='<a style="border: thin outset rgb(255, 255, 255); padding: 0px 2px; background-color: #5c5c5c; float:right; color: rgb(255, 255, 255); text-align: center; font-weight: bold; text-decoration: none;" onclientclick=" return false;" onclick="document.getElementById(\'searchResults\').style.display =\'none\';" title="Close" id="btnClose">X</a>';
	div.style.display = '';
	div.innerHTML = '<img src="'+live_site+'/images/loading.gif" border="0" align="absmiddle" /> '+'<small>Searching...</small>';
	try	{
		lsXmlHttp=new XMLHttpRequest();
	} catch (e) {
		try	{ lsXmlHttp=new ActiveXObject("Msxml2.XMLHTTP");
		} catch (e) {
			try { lsXmlHttp=new ActiveXObject("Microsoft.XMLHTTP");
			} catch (e) {
				alert(extravote_text[0]);
				return false;
			}
		}
	}
	lsXmlHttp.onreadystatechange=function() 
	{
		var response;
		if(lsXmlHttp.readyState==4)
		{
			setTimeout(function(){ 
				response = lsXmlHttp.responseText; 
				if(response) div.innerHTML = closebtn+'<small>'+response+'</small>';
			},500);
		}
	}
	lsXmlHttp.open("GET",live_site+"/ajax.php?text="+searchText,true);
	lsXmlHttp.send(null);
}
