// News item 1

h2 = "News"
l2 = "March Price Rises for HCFC Refrigerants"


// News item 2

h3 = "National Flyer"
l3 = "Products, Specials..."

// News item 3
 
h4 = "New Products"
l4 = "Click here to see all the latest products!"

// News item 4

h5 = "MSDS"
l5 = "Download MSDS"


// Writes back to the website


document.write(h2.bold(),"<br>","<a href=news.htm>" + l2 + "</a>","<br><br>");



document.write(h3.bold(),"<br>","<a href=natFlyers.htm>" + l3 + "</a>","<br><br>");

document.write(h4.bold(),"<br>","<a href=newproducts.htm>" + l4 + "</a>","<br><br>");

document.write(h5.bold(),"<br>","<a href=msds.htm>" + l5 + "</a>");


