function low32(){
var code='';
detectQuickTime()
detectReal()
detectWindowsMedia()
var WMIsInstalled = detectWindowsMedia();
var quickTimeIsInstalled = detectQuickTime();
var RealIsInstalled = detectReal();


redir=0;autopopup=0;
// quickTimeIsInstalled=0;
// RealIsInstalled=0;
// WMIsInstalled=0;
if (WMIsInstalled)
{
		if (redir)
		{
		  document.writeln('');
		  setTimeout('winpop()',popupDelay);		  
		}  
		else
		{
		
						code += '<embed type="application/x-mplayer2" pluginspage="http://www.microsoft.com/windows/windowsmedia/download/" src="http://players.creacast.com/creacast/radio_napolidoc/playlist_s.asx" name="player" style="left:0px; top:0px; width:200px; height:50px;" autostart="1" loop="1" autosize="0" showcontrols="1" showstatusbar="1" showtracker="0" enabletracker="0" showdisplay="0" showgotobar="0" showcaptioning="0" enablecontextmenu="0" showpositioncontrols="0"  showaudiocontrols="1" volume="30"></embed>';
		}
}
else if (RealIsInstalled)
{
		if (redir)
		{
			document.writeln('');
			setTimeout('realpop()',popupDelay);
		}
		else
		{			
			code +='<EMBED TYPE="audio/x-pn-realaudio-plugin" SRC="http://players.creacast.com/creacast/radio_napolidoc/playlist_s.pls" WIDTH="200" HEIGHT="45" AUTOSTART="true" CONSOLE="video"></EMBED>';
		}
}
else if (quickTimeIsInstalled)
{
		if (redir)
		{
			document.writeln('');
  	  setTimeout('qtpop()',popupDelay);  	  
	  }	
	  else
	  {
				code +='<object classid="CLSID:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B" width="200" height="16" codebase="http://www.apple.com/qtactivex/ qtplugin.cab"';  
				code +='align="middle" src=http://players.creacast.com/creacast/radio_napolidoc/playlist_s.pls autoplay=true controller=true >'; 
				code +='<param name="SRC" value="http://players.creacast.com/creacast/radio_napolidoc/playlist_s.pls">'; 
				code +='<param name="AUTOPLAY" value="true">'; 
				code +='<param name="CONTROLLER" value="true">'; 
				code +='<embed src="http://players.creacast.com/creacast/radio_napolidoc/playlist_s.pls" width="200" height="16" autoplay="true" controller="true" type="video/quicktime" autostart="true" pluginspage="http://www.apple.com/quicktime/ download/" align="middle"> </object>';  	  
				//code +='<embed src="klassic64.mp3.m3u" type="audio/mpeg" autoplay="true" target="QuickTimePlayer" />');
	  }	  	
}
else 
{	
	code +='<a href="#" OnClick="JavaScript:window.open(\'http://www.microsoft.com/windows/windowsmedia/it/player/download/download.aspx\');"  class="linkOrange">Manca windows media player clicca qui per installare</a><br>';	
}	
return code;
}