﻿function KeyDownHandler() { 		
 var btn = document.getElementById('ctl00_MainContents_myAnimatedImage');
 btn.src = "App_Themes/wuerth/Images/spinner.gif";
	
}
		
function openbox(url, text)
{  
   var imagetoshow = document.getElementById('imagetoshow');
   imagetoshow.src = url;
   imagetoshow.style.display = "block";
   
   var container = document.getElementById('texttoshow');
   container.innerHTML = text;
}

function normalimage()
{
	var imagetoshow = document.getElementById('imagetoshow');
    imagetoshow.src = 'http://www.kulturforum.dk/kultur/media/layout/html/images/blind.gif';
    imagetoshow.style.display = "block";
   
   
}

