// Copyright 1997-2003 © Check It Recording + Ultra Mod : Programming Division -
/*

############################################################################################################
#
#     ################################################################################################
#     ##                                                 ######          ######  ######  ######  ######
#     ###                                                 ######          ######  ######  ######  ######
#     ####         Time-Date Stamper - Version [ 5.0.1 ]   ######          ######  ######  ######  ######
#     #####                                                 ######          ######  ######  ######  ######
#     ######       Author - Otto Matic                       ######  ######  ######  ######  ######  ######
#     #####        Revised - September 3, 2003              ######  ######  ######  ######          ######
#     ####                                                 ######  ######  ######  ######          ######
#     ###                                                 ######  ######  ######  ######          ######
#     #################################################################################################
#
#     ################################################################################## ###################
#                                                                                      # ##    #######    ##
#         *** NOTE                                                                     # ###    #####    ###
#                                                                                      # ####    ###    ####
#	    The use of this script is srictly prohibited for personal or                 # #####    #    #####
#	    commercial purposes unless authorized by the author.                         # ######       ######
#                                                                                      # #####    #    #####
#	    Any unauthorized use of this script will be considered theft.                # ####    ###    ####
#	    Copyright Law went into effect when this script was created and posted.      # ###    #####    ###
#                                                                                      # ##    #######    ##
#     ################################################################################## ###################
#
############################################################################################################

*/

	var nMonth = 0;
	var dDate = new Date();
	nMonth = dDate.getMonth();

	january = ('<IMG border="0" width="17" height="17" src="images/attention.gif"> <B><FONT color="ff0000">Monthly Special</FONT></B><BR><FONT size="1"><A href="remedies_skin.html">Organic Facial Cleanser</A> (FC00112) with every purchase. A $12.00 Value!<BR> offer valid 01/01 through 01/31');
	february = ('<IMG border="0" width="17" height="17" src="images/attention.gif"> <B><FONT color="ff0000">Monthly Special</FONT></B><BR><FONT size="1"><A href="remedies_skin.html">Organic Facial Cleanser</A> (FC00112) with every purchase. A $12.00 Value!<BR> offer valid 02/01 through 02/28');
	march = ('<IMG border="0" width="17" height="17" src="images/attention.gif"> <B><FONT color="ff0000">Monthly Special</FONT></B><BR><FONT size="1"><A href="remedies_skin.html">Organic Facial Cleanser</A> (FC00112) with every purchase. A $12.00 Value!<BR> offer valid 03/01 through 03/31');
	april = ('<IMG border="0" width="17" height="17" src="images/attention.gif"> <B><FONT color="ff0000">Monthly Special</FONT></B><BR><FONT size="1"><A href="remedies_skin.html">Organic Facial Cleanser</A> (FC00112) with every purchase. A $12.00 Value!<BR> offer valid 04/01 through 04/30');
	may = ('<IMG border="0" width="17" height="17" src="images/attention.gif"> <B><FONT color="ff0000">Monthly Special</FONT></B><BR><FONT size="1"><A href="remedies_skin.html">Organic Facial Cleanser</A> (FC00112) with every purchase. A $12.00 Value!<BR> offer valid 05/01 through 05/31');
	june = ('<IMG border="0" width="17" height="17" src="images/attention.gif"> <B><FONT color="ff0000">Monthly Special</FONT></B><BR><FONT size="1"><A href="remedies_skin.html">Organic Facial Cleanser</A> (FC00112) with every purchase. A $12.00 Value!<BR> offer valid 06/01 through 06/30');
	july = ('<IMG border="0" width="17" height="17" src="images/attention.gif"> <B><FONT color="ff0000">Monthly Special</FONT></B><BR><FONT size="1"><A href="remedies_skin.html">Organic Facial Cleanser</A> (FC00112) with every purchase. A $12.00 Value!<BR> offer valid 07/01 through 07/31');
	august = ('<IMG border="0" width="17" height="17" src="images/attention.gif"> <B><FONT color="ff0000">Monthly Special</FONT></B><BR><FONT size="1"><A href="remedies_skin.html">Organic Facial Cleanser</A> (FC00112) with every purchase. A $12.00 Value!<BR> offer valid 08/01 through 08/31');
	september = ('<IMG border="0" width="17" height="17" src="images/attention.gif"> <B><FONT color="ff0000">Monthly Special</FONT></B><BR><FONT size="1"><A href="remedies_skin.html">Organic Facial Cleanser</A> (FC00112) with every purchase. A $12.00 Value!<BR> offer valid 09/01 through 09/30');
	october = ('<IMG border="0" width="17" height="17" src="images/attention.gif"> <B><FONT color="ff0000">Monthly Special</FONT></B><BR><FONT size="1"><A href="remedies_skin.html">Organic Facial Cleanser</A> (FC00112) with every purchase. A $12.00 Value!<BR> offer valid 10/01 through 10/31');
	november = ('<IMG border="0" width="17" height="17" src="images/attention.gif"> <B><FONT color="ff0000">Monthly Special</FONT></B><BR><FONT size="1"><A href="remedies_skin.html">Organic Facial Cleanser</A> (FC00112) with every purchase. A $12.00 Value!<BR> offer valid 11/01 through 11/30');
	december = ('<IMG border="0" width="17" height="17" src="images/attention.gif"> <B><FONT color="ff0000">Monthly Special</FONT></B><BR><FONT size="1"><A href="remedies_skin.html">Organic Facial Cleanser</A> (FC00112) with every purchase. A $12.00 Value!<BR> offer valid 12/01 through 12/31'); 


	function insert_TDStamp()
		{
		if (nMonth == 0)
			{
			document.write(january);
			}
		if (nMonth == 1)
			{
			document.write(february);
			}
		if (nMonth == 2)
			{
			document.write(march);
			}
		if (nMonth == 3)
			{
			document.write(april);
			}
		if (nMonth == 4)
			{
			document.write(may);
			}
		if (nMonth == 5)
			{
			document.write(june);
			}
		if (nMonth == 6)
			{
			document.write(july);
			}
		if (nMonth == 7)
			{
			document.write(august);
			}
		if (nMonth == 8)
			{
			document.write(september);
			}
		if (nMonth == 9)
			{
			document.write(october);
			}
		if (nMonth == 10)
			{
			document.write(november);
			}
		if (nMonth == 11)
			{
			document.write(december);
			}
		}

	insert_TDStamp();
