
function writediv() {
	var str = "";
	str = str + "<div id='disclaimerDiv' style='display: none'>";
	str = str + "this is the ONLY official website of UnUS Partners.  Except those of our partner company websites and affiliated websites (<a href='http://www.naams-assembly.com' target='_blank'>www.naams-assembly.com</a> and <a href='http://www.naams-components.com' target='_blank'>www.naams-components.com</a>), UnUS Partner is not associated nor related in any way or form with any other website.</div>";
	document.write(str);
}

function showhide(obj) {
	var theobj = document.getElementById(obj);
	if (theobj != null) {
		if (theobj.style.display=='none') {
			theobj.style.display='block';
		} else if (theobj.style.display=='block') {
			theobj.style.display='none';
		}
	}
}

