function playmedia(mname)
{
	/*  <script type="text/javascript" src="movie.js"></script>
	 *  <script type="text/javascript">playmedia('filename');</script>
	 */
	
	var st = '';
	var port = 'mms';
	st = st + mname;
	if (navigator.appName == 'Netscape') { port = 'http'; }
	
	document.writeln('<p align="center">');
	document.writeln('<object NAME="Player" WIDTH="420" HEIGHT="375" type="application/x-oleobject" ');
	document.writeln('');
	document.writeln('CLASSID="CLSID:6BF52A52-394A-11d3-B153-00C04F79FAA6">');
	document.writeln('');
	document.writeln('<param NAME="URL" VALUE="'+port+'://portal.jobbik.net/files/images/Filmek/'+ st +'"> ');
	document.writeln(' <param NAME="AUTOSTART" VALUE="false"> ');
	document.writeln(' <param name="uiMode" value="full"> ');
	document.writeln(' <param name="currentPosition" value="1"> ');
	document.writeln(' <param name="showAudioControls" value="1"> ');
	document.writeln(' <param name="showControls" value="1"> ');
	document.writeln(' <param name="enableContextMenu" value="1"> ');
	document.writeln(' <param name="mute" value="0"> ');
	document.writeln(' <param name="volume" value="50"> ');
	document.writeln('<param name="stretchToFit" value="1"> ');
	document.writeln('<embed WIDTH="420" HEIGHT="375" SRC="'+port+'://portal.jobbik.net/files/images/Filmek/'+ st +'" ');
	document.writeln('');
	document.writeln('TYPE="application/x-oleobject"  mute="0" enablecontextmenu="1" showdisplay="0" ');
	document.writeln('');
	document.writeln('autostart="1" playcount="1" showaudiocontrols="1" showstatusbar="0" ');
	document.writeln('');
	document.writeln('showcontrols="1"></embed> ');
	document.writeln('</object></p>');
	document.writeln('<p>&nbsp;</p>');

}

