function audioplay2 (was) {
alert(was);
return false;
}


function audioplay (was) {
	var audiofile = '/beitraege/' + was + '.mp3';
	alert(audiofile);
	myWin = window.open('','','toolbar=no,menubar=no,scrollbars=no,location=no,status=no,resizable=yes,top=100,left=200,width=400,height=200');
  
   myWin.document.close();
   myWin.document.open("text/html");
   myWin.document.writeln("<HTML><HEAD><TITLE>audioplay</TITLE></HEAD>");
   myWin.document.writeln("<BODY BGCOLOR=#FFFFFF TEXT=#000000 leftmargin=0 topmargin=0 marginheight=0 marginwidth=0>");
	
	
	
	myWin.document.writeln('<a href="' + audiofile + '">Download (rechts klick)</a> ');
	myWin.document.writeln('<object classid="clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B" codebase="http://www.apple.com/qtactivex/qtplugin.cab" width="400" height="12">');
   myWin.document.writeln('<param name="autoplay" value="true">');
   myWin.document.writeln('<param name="controller" value="true">');
	myWin.document.writeln('<param name="src" value="' + audiofile + '">');
	myWin.document.writeln('<embed width="400" pluginspage="http://www.apple.com/quicktime/download/"  src="' + audiofile + '"  type="video/quicktime" height="12" controller="true" autoplay="true">');
	myWin.document.writeln('</embed></object>');
	
   myWin.document.writeln("</BODY></HTML>");
	return false;

}

function mailsenden(wer) {

var name = wer;
var domain = "neubauerrundfunk.at";
mailurl = 'mailto:' + name + '@' + domain;

window.open(mailurl);

}
