// JavaScript Document
function viewTab(str)
{
	if (str=="key")
	{
		document.getElementById("tabs").innerHTML="<div style='padding:10px;height=100;'>&raquo; Intellectual property protection<p>&raquo; Unique Business Culture</p><p> &raquo; 24/7 Service</p></div>";
		document.getElementById("tabs").style.background="#807A59";
	}
	else
	{
		document.getElementById("tabs").innerHTML="<div style='padding:10px;height=100;'><table align='center' border='0' cellspacing='0' cellpadding='0' class='box_content'><tr><td><a href='docs/brochure.pdf'><img id='pdf' src='images/pdf_icon.jpg' width='50' height='77' border='0'/></a></td><td>&nbsp;&nbsp;<a href='docs/brochure.pdf' class='box_content'>Download Brochure</a></td></tr></table></div>";
		document.getElementById("tabs").style.background="#1c4d18";
	}
	
}

