<!-- Begin
			function prompt2(promptpicture, prompttitle, message, sendto) { 
				promptpicture='img/icon.jpg';
				promptbox = document.createElement('div'); 
				promptbox.setAttribute ('id' , 'prompt') 
					document.getElementsByTagName('body')[0].appendChild(promptbox) 
					promptbox = eval("document.getElementById('prompt').style") 
					promptbox.position = 'relative' 
					promptbox.top = -300 
					promptbox.left = 200 
					promptbox.width = 300 
					promptbox.border = '2px outset #2255EE' 
					document.getElementById('prompt').innerHTML = "<table cellspacing='0' cellpadding='0' border='0' width='100%'><tr valign='middle'><td width='22' height='22' style='text-indent:2;' class='titlebar'><img src='" + promptpicture + "' height='18' width='18'></td><td class='titlebar' style='text-indent:10;'>" + prompttitle + "</td></tr></table>" 
					document.getElementById('prompt').innerHTML = document.getElementById('prompt').innerHTML + "<table cellspacing='0' cellpadding='0' border='0' bordercolor='green' width='100%' class='promptbox'><tr><td>" + message + "</td></tr><tr><td><input type='text' id='promptbox' onblur='this.focus()' class='promptbox'>&nbsp;</td></tr><tr><td align='right'><br><input type='button' value='OK' onClick='" + sendto + "(document.getElementById(\"promptbox\").value);					document.getElementsByTagName(\"body\")[0].removeChild(document.getElementById(\"prompt\"))'> <input type='button' value='Cancel' onClick='" + sendto + "(\"\"); document.getElementsByTagName(\"body\")[0].removeChild(document.getElementById(\"prompt\"))'></td></tr></table>" 
					document.getElementById("promptbox").focus() 
				} 
		function myfunction(value) { 
			if(value.length<=0)
				return false;
			else
				var x=document.getElementById("medie");
				x[x.selectedIndex].text=value;
			
		} 

		function callPrompt(){
			var x=document.getElementById("medie");
			var y=x[x.selectedIndex].value;
			if (y=="Andet medie"){
			prompt2('img/icon.gif', 'Diapol','Hvor har du hørt om Diapol?', 'myfunction');
		}
	}
// End-->
