function writeVideo (theVideo, theComment) {
     document.write("<p align=center>");
     if (navigator.appName == 'Netscape')
         document.write ("<EMBED SRC='" + theVideo + "' TYPE='video/mpeg' WIDTH='160' HEIGHT='130' AUTOSTART='True'>");
     else
	     document.write ("<IMG DYNSRC='" + theVideo + "' START=fileopen LOOP=1 CONTROLS>");

	 document.write("<BR><BR>");
	 if (theComment != "") {
	     document.write("<font size='3'>" + theComment + "</font>");
         document.write("<BR><BR>");
	 }
		 
     document.write("<font SIZE='2'>Click <I>Refresh</I> to watch the video again.</font>");
	 document.write("</p>");
} 
