
  // Enter   Day and Date of Special    between single quotes in next line

	var day='' ;

  // Enter    Name of Entree    between single quotes in next line

	var entree1='' ;	

  // Enter   Entree Description - entree, sides, drink, options   between single quotes in next line

	var descr1='' ;	

  // Enter   Price of Special  between single quotes in next line

	var specPrice1='' ;  



  // Enter    Name of Entree    between single quotes in next line

	var entree2='' ;	

  // Enter   Entree Description - entree, sides, drink, options   between single quotes in next line

	var descr2='' ;	

  // Enter   Price of Special  between single quotes in next line

	var specPrice2='' ;  



  // Enter    Name of Entree    between single quotes in next line

	var entree3='' ;	

  // Enter   Entree Description - entree, sides, drink, options   between single quotes in next line

	var descr3='' ;	

  // Enter   Price of Special  between single quotes in next line

	var specPrice3='' ;  



  // Enter   Soup of the Day   between single quotes in next line


	var soop='' ;  

  // Enter  Price of Soup    between single quotes in next line

	var soopPrice='' ;  

  // Enter   Quote or Comment of Day   between single quotes in next line

	var quote=' ' ;


document.write("<p class=\"spec1\"><!--Weekly Specials--></p>")

document.write("<p class=\"spec2\">")
document.write(day)
document.write("</p><p>&nbsp; </p>")

document.write("<p class=\"spec3\">")
document.write(entree1)
document.write("</p>")

document.write("<p class=\"spec4\">")
document.write(descr1)
document.write("</p>")

document.write("<p class=\"spec5\">")
document.write(specPrice1)
document.write("</p><p>&nbsp; </p>")

document.write("<p class=\"spec3\">")
document.write(entree2)
document.write("</p>")

document.write("<p class=\"spec4\">")
document.write(descr2)
document.write("</p>")

document.write("<p class=\"spec5\">")
document.write(specPrice2)
document.write("</p><p>&nbsp; </p>")


document.write("<p class=\"spec3\">")
document.write(entree3)
document.write("</p>")

document.write("<p class=\"spec4\">")
document.write(descr3)
document.write("</p>")

document.write("<p class=\"spec5\">")
document.write(specPrice3)
document.write("</p><p>&nbsp; </p>")


document.write("<p class=\"spec3\">")
document.write(soop)
document.write("</p>")

document.write("<p class=\"spec5\">")
document.write(soopPrice)
document.write("</p>")

document.write("<p>&nbsp; </p><hr width=\"50%\" /><p>&nbsp; </p>")

document.write("<h2>")
document.write(quote)
document.write("</h2>")




