// JavaScript Document
<!--
function eml_coder(account,domain,dotwhat,displayText,subject)
{
	document.write('<a href="mailto:'+account+'&#64;'+domain+'&#46;'+dotwhat+'?subject='+subject+'" title="'+displayText+'">'+displayText+'</a>');
}

 function write_object(embedded_object) {
			document.write(embedded_object);
			document.write('\n');
		}
		
 function embed_media(width,height,source,autostart)
 		{
			write_object('<object width="'+width+'" height="'+height+'" classid="CLSID:22d6f312-b0f6-11d0-94ab-0080c74c7e95" id="mediaplayer1"> <param name="Filename" value="'+source+'">                    	<param name="AutoStart" value="'+autostart+'">       <param name="AutoLoad" value="'+autostart+'">             	<param name="ShowControls" value="True">                    	<param name="ShowStatusBar" value="False">                    	<param name="ShowDisplay" value="False">                    	<param name="AutoRewind" value="True">                    	<embed type="application/x-mplayer2" pluginspage="http://www.microsoft.com/Windows/Downloads/Contents/MediaPlayer/" width="'+width+'" height="'+height+'" src="'+source+'" filename="'+source+'" autostart="'+autostart+'" autoload="'+autostart+'" showcontrols="True" showstatusbar="False" showdisplay="False" autorewind="True">                  </embed>             		</object>');
		}

//-->


