function email() {	var n = "info";	var l = "com";	var d = "kukukkunst";	link = "mailto:" + n + "@" + d + "." + l;	window.location.href = link;}function insertFlashSpeaker(home) {	document.write('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,22,0" id="speaker" width="18" height="18">');	document.write('<param name="movie" value="speaker.swf" />');	document.write('<param name="bgcolor" value="#ffffff" />');	document.write('<param name="wmode" value="transparent" />');	if (parseInt(home) > 0) {		document.write('<param name="FlashVars" value="home=' + home + '" />');	}	document.write('<param name="quality" value="high" />');	document.write('<param name="allowscriptaccess" value="samedomain" />');	document.write('<embed type="application/x-shockwave-flash" pluginspage="http://www.adobe.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash" name="speaker" width="18" height="18" src="speaker.swf" bgcolor="#ffffff" quality="high" allowscriptaccess="samedomain" wmode="transparent"');	if (parseInt(home) > 0) {		document.write(' FlashVars="home=' + home + '"');	}	document.write('>');	document.write('<noembed>');	document.write('</noembed>');	document.write('</embed>');	document.write('</object>');}
