//Found this idea from code to display a "New" image at: 
//http://www.geocities.com/SiliconValley/park/2554/newitem.html
//Then I modified it to display any section of HTML code as desired.
//Raj, August 1, 2008

//Date could be passed in like "8/1/2008".
//Example of thing to write might be:
//<IMG SRC=\"new.gif\" WIDTH=31 HEIGHT=12 BORDER=0 ALT=\"new\">

function displayThisUntil(expiryDate, strDesiredHTML)
  {
	exp = new Date(expiryDate);
	cur = new Date();
	if (cur.getTime() < exp.getTime())
	    document.write(strDesiredHTML);
  }
