document.write(' <a name="top"></a>	 ');
document.write(' <div id="banner"><a href="http://www.sgcd.org/Deco2010Showcase.html"><img src="http://www.sgcd.org/images/banner.jpg" width="696" height="144" border="0"></a></div> ');
document.write(' 	 ');
document.write(' 	 ');
document.write(' 	<div id="links"> ');
document.write(' <ul> ');
// document.write(' 	<li><a href="http://decoratorsblog.blogspot.com" target="_blank">DECORATOR\'S BLOG</a></li> ');
document.write(' 	<li><a href="http://www.sgcd.org/about.html">JOIN SGCDpro</a></li> ');
document.write(' 	<li><a href="http://www.sgcd.org/tradeshow/index.html">SEMINAR & TRADESHOW</a></li> ');
document.write(' 	<li><a href="http://www.sgcd.org/members.html">CORPORATE MEMBERS</a></li> ');
document.write(' 	<li><a href="http://www.sgcd.org/membercheck.html">LEGISLATIVE</a></li> ');
document.write(' 	<li><a href="http://www.sgcd.org/membercheckNL.html">NEWSLETTERS</a></li> ');
document.write(' 	<li><a href="http://www.sgcd.org/membercheckRFS.html">REGULATORY FACT SHEETS</a></li> ');
document.write(' 	<li><a href="http://www.sgcd.org/membercheckTN.html">TECHNICAL INFORMATION</a></li> ');
document.write(' 	<li><a href="http://www.sgcd.org/discovery.html">AWARDS</a></li> ');
document.write(' 	<li><a href="http://www.sgcd.org/scholarship.html">VELONIS SCHOLARSHIPS</a></li> ');
// document.write(' 	<li><a href="http://www.sgcd.org/regulate.html">INDUSTRY NEWS</a></li> ');
document.write(' 	<li><a href="http://www.sgcd.org/testinglab.html">MEMBER TEST LABS</a></li> ');
document.write(' 	<li><a href="http://www.sgcd.org/contact.html">CONTACT SGCDpro</a></li> ');
document.write(' 	<li><a href="http://www.sgcd.org/index.html">HOME</a></li> ');
document.write(' </ul> ');
document.write(' 	</div> ');


function divtoggle(id) {
 var obj = document.getElementById(id);
 if ( (obj.className == "hide") || (obj.className.indexOf("hide") > -1)) {
	obj.className = "show";
 }
 else {
	obj.className = "hide";
 }
}