//this file contains the code for the right column and appears on every page where the appropriate code is added. 
//(this file -news2.js- contains the printNews function)

//in the head of the page add --- <script language = "JavaScript" src = "news2.js"></script>

//at the place where you want the links to appear add --- <script language = "JavaScript">printNews();</script>



function printNews(){ document.write('<h2>WPA News</h2><p></p>');                         //headline of column
document.write('<h2><a href = "newsletters.htm">Westwood Park newsletters now available in PDF format</a></h2>');
document.write('<h2><a href = "docs.htm">Residential Design Guidelines now available in PDF format!</a></h2>');
document.write('<h2><a href = "dvd.htm">DVDs available of "The Building of Westwood Park"</a></h2>');
document.write('<h2><a href = "discussion.htm">Subscribe to the Westwood Park Association email list</a></h2>');
document.write('<h2><a href = "http://groups.yahoo.com/group/WestwoodPark">Signup for the Westwood Park Discussion Group</a></h2>');
}
