Back to Scripts page
Click in the box below, select all and copy to grab the script
<HTML> <HEAD> <TITLE>Got QuickTime?</TITLE> </HEAD> <BODY BGCOLOR=WHITE> <H2>Here's tonight's dinner:<P> <SCRIPT LANGUAGE=JAVASCRIPT> <!-- Hide script from older browsers // This script copyright 1997, Tom Negrino and Dori Smith. // This script is from "JavaScript for the WWW, Visual QuickStart Guide, 2nd Ed." // For more information, see <http://www.chalcedony.com/javascript/>. // This script may be used and modified, but the copyright notice must remain intact. if (navigator.plugins["QuickTime Plugin"]) { document.write("<embed src='images/dinner.mov' width='160' height='144' loop='false' autoplay='true'>") } else { document.write("<img src=images/dinner.gif width='160' height='120'>") } // End hiding script from older browsers --> </SCRIPT></H2> </BODY> </HTML>