function showResult(str)

{
	
    var url="http://www.rabatterat.nu/_livesok_function.asp";
    url=url+"?keyword="+str;
    url=url+"&sid="+Math.random();


        dojo.xhrGet({
           url: url,
            handleAs: "text",
            load: function(data) {
                document.getElementById("searchresults").innerHTML = data;
            },
            error: function(error) {
                document.getElementById("searchresults").innerHTML = "An unexpected error occurred: " + error;
            }
        });

}
