// JavaScript Document
function writeMediaLink() {
	imagePath = "http://mednews.wustl.edu/PRmovies/video_header_216.jpg";
	movieName = "flyeye";
	getNav = navigator.userAgent.toLowerCase();
	
	if (getNav.indexOf("mozilla") > -1 && getNav.indexOf("mac") > -1 && getNav.indexOf("msie") == -1) {
		moviePath = "rtsp://medavi.wustl.edu/mpa/PRmovies/"+movieName+".rm";
	}
	
	else {
		moviePath = "http://mednews.wustl.edu/PRmovies/"+movieName+"/file.rpm";
	}
	
	document.write('<a href="http://real.com"><img src="'+imagePath+'" border="0"></a><br>\n');
	document.write('<object CLASSID="clsid:CFCDAA03-8BE4-11cf-B84B-0020AFBBCCFA" id="videoClip" height="196" width="216">\n');
	document.write('<PARAM NAME="SRC" VALUE="'+moviePath+'">\n');
	document.write('<PARAM NAME="CONTROLS" VALUE="ImageWindow">\n');
	document.write('<PARAM NAME="CONSOLE" VALUE="one">\n');
	document.write('<PARAM NAME="AUTOSTART" VALUE="true">\n');
	document.write('<PARAM NAME="TYPE" VALUE="audio/x-pn-realaudio-plugin">\n');
	document.write('<embed src="'+moviePath+'" nojava="true" height="196" width="216" controls="ImageWindow" console="one" autostart="true" type="audio/x-pn-realaudio-plugin">\n');
	document.write('</object>\n');
	document.write('<object CLASSID="clsid:CFCDAA03-8BE4-11cf-B84B-0020AFBBCCFA" id="videoClipcontrols" height="25" width="216">\n');
	document.write('<PARAM NAME="SRC" VALUE="'+moviePath+'">\n');
	document.write('<PARAM NAME="CONTROLS" VALUE="ControlPanel">\n');
	document.write('<PARAM NAME="CONSOLE" VALUE="one">\n');
	document.write('<PARAM NAME="TYPE" VALUE="audio/x-pn-realaudio-plugin">\n');
	document.write('<embed src="'+moviePath+'" nojava="true" width="216" height="25" controls="ControlPanel" console="one"  type="audio/x-pn-realaudio-plugin">\n');
	document.write('</object>\n');

}