function shadow(tekst,kleur,letterpx){
	if(isStyleSupported('text-shadow','')){
		document.write("<STYLE type='text/css'>");
		document.write(".titleshadow{text-shadow: 2px 2px 3px black;text-align: center;padding: 0 0 0px 0;font-size:"+letterpx+"px;color:"+kleur+";font-style:'Times New Roman';font-style:italic;font-weight:bold;}");
		document.write("</STYLE>");	
		document.write("<div class='titleshadow'>"+tekst+"</div>");	
	}else{
		document.write("<STYLE type='text/css'>");
		document.write(".titleshadow{position:relative;font-size:"+letterpx+"px;color:#404040;font-family:'Times New Roman';font-style:italic;font-weight:bold;}");
		document.write(".titleforeground{position:absolute;left:-2px;top:-1px;font-size:"+letterpx+"px;color:"+kleur+";font-family:'Times New Roman';font-style:italic;font-weight:bold;}");
		document.write("</STYLE>");	
		document.write("<CENTER STYLE='padding: 0 0 5px 0;'>");	
		document.write("<span class='titleshadow'>"+tekst+"<span class='titleforeground'>"+tekst+"</span></span>");
		document.write("</CENTER>");
	};	
};
