Permalink
Cannot retrieve contributors at this time
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
78 lines (67 sloc)
2.1 KB
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <HTML> | |
| <HEAD> | |
| <TITLE>What the Doctor Takes | Ordering Vitamins</TITLE> | |
| </HEAD> | |
| <script language="JavaScript"> | |
| <!-- | |
| if (document.images) { | |
| image1on = new Image(); | |
| image1on.src = "images/infoon.gif"; | |
| image2on = new Image(); | |
| image2on.src = "images/faqon.gif"; | |
| image3on = new Image(); | |
| image3on.src = "images/orderon.gif"; | |
| image1off = new Image(); | |
| image1off.src = "images/infooff.gif"; | |
| image2off = new Image(); | |
| image2off.src = "images/faqoff.gif"; | |
| image3off = new Image(); | |
| image3off.src = "images/orderoff.gif"; | |
| } | |
| function turnOn(imageName) { | |
| if (document.images) { | |
| document[imageName].src = eval(imageName + "on.src"); | |
| } | |
| } | |
| function turnOff(imageName) { | |
| if (document.images) { | |
| document[imageName].src = eval(imageName + "off.src"); | |
| } | |
| } | |
| // --> | |
| </script> | |
| <BODY bgcolor="#FFFFFF" topmargin="0" leftmargin="0" marginwidth="0" marginheight="0"> | |
| <TABLE BORDER=0 CELLPADDING=0 CELLSPACING=0 WIDTH=100% bgcolor="#FFFFFF"> | |
| <TR> | |
| <TD rowspan="3" width="192"> | |
| <img border="0" src="images/logo.gif" width="192" height="198"></TD> | |
| <TD valign="top" background="images/bg.gif"> | |
| <img border="0" src="images/topbar.gif" width="408" height="37"></TD> | |
| </TR> | |
| <TR> | |
| <TD valign="top"> | |
| <img border="0" src="images/whatthe.gif" width="408" height="59"></TD> | |
| </TR> | |
| <TR> | |
| <TD valign="top"> | |
| <table border="0" cellpadding="0" cellspacing="0" width="408"> | |
| <tr> | |
| <td align="right"> | |
| <A href="info.htm" onmouseout="turnOff('image1')" onmouseover="turnOn('image1')"><IMG border=0 height=85 name=image1 src="images/infooff.gif" width=64></A> | |
| <A href="faq.htm" onmouseout="turnOff('image2')" onmouseover="turnOn('image2')"><IMG border=0 height=85 name=image2 src="images/faqoff.gif" width=64></A> | |
| <A href="order.htm" onmouseout="turnOff('image3')" onmouseover="turnOn('image3')"><IMG border=0 height=85 name=image3 src="images/orderoff.gif" width=68></A></td> | |
| </tr> | |
| </table> | |
| </TD> | |
| </TR> | |
| </TABLE> | |
| <table border="0" cellpadding="0" cellspacing="0" width="600"> | |
| <tr> | |
| <td><img border="0" src="images/bookshd.gif" width="510" height="100"></td> | |
| </tr> | |
| <tr> | |
| <td></td> | |
| </tr> | |
| </table> | |
| </BODY> | |
| </HTML> |