function showMenu(str)

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


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

}
