// News item 1

h1 = "NEWSFLASH"
l1 = "2010 Price Guide released!"

// News item 2

h2 = "National Flyer"
l2 = "News, Products, Specials..."

// News item 3
 
h3 = "New Products"
l3 = "Click here to see all the latest products!"

// News item 4

h4 = "MSDS"
l4 = "Download MSDS"


// Writes back to the website


document.write(h1.bold(),"<br>","<a href=news.htm>" + l1 + "</a>","<br><br>");

document.write(h2.bold(),"<br>","<a href=natFlyers.htm>" + l2 + "</a>","<br><br>");

document.write(h3.bold(),"<br>","<a href=newproducts.htm>" + l3 + "</a>","<br><br>");

document.write(h4.bold(),"<br>","<a href=msds.htm>" + l4 + "</a>");

