function lookup(inputString,searchresulthtml) {
	if(inputString.length <= 1) {
		$('#suggestions').fadeOut(); // hide result
	} else {
		//var dataString = 'tx_indexedsearch[sword]='+ inputString;
		//alert (dataString);return false;

/*
		$.post("http://skp-t1.sk-prof.iacd.info/index.php?id=208", $("#searchbox").serialize(), function(data){
			$('#suggestions').fadeIn(); // Show the suggestions box
			$('#suggestions').html(data); // Fill the suggestions box
		});
*/		
		$('#search_loader').css("visibility", "visible");
		//http://skp-t1.sk-prof.iacd.info/fileadmin/templates/ext/searchresult.html
		//$.post("http://www.schwarzkopf-professional.com/index.php?id=208&tx_indexedsearch[sword]="+inputString+"", function(data) { // Do an AJAX call
		$.post("index.php?id="+searchresulthtml+"&tx_indexedsearch[sword]="+inputString+"", function(data) { // Do an AJAX call
			$('#suggestions').fadeIn(); // Show the suggestions box
			$('.suggestions').html(data); // Fill the suggestions box
			//$('#search_loader').css("display", "none");
			$('#search_loader').css("visibility", "hidden");
		});
		
		
	}
}
