
function outStatus() {
	self.status="Active Wire Networks, Your source for advanced technology";
}

function noSpam(who) {
	var cmd = deSpam(who);
	var em = document.getElementById("mail");
	em.action=cmd;
	em.submit();	
}

function deSpam(who) {
	var msg = "ma";
	msg += "ilt";
	msg += "o:" + who + "@";
	return msg + "activewire.net";
}

function spamOver(who) {
	window.status = deSpam(who);
	return true;
}

/* enlarge the text1pad object to fill bottom of text1 object */
function adjustPad() {
	var text1 = document.getElementById("text1");
	document.getElementById("text1pad").style.height = text1.offsetHeight;
	document.getElementById("text1pad").style.width = text1.offsetWidth;
}

function writeLeftMenu() {
	document.getElementById("leftMenu").innerHTML="<ul>" +
			"<li><a href=\"../J2EE/index.html\">J2EE Consulting</a></li>" +
			"<li><a href=\"../AJAX/index.html\">AJAX</a></li>" +				
			"<li><a href=\"../Host/index.html\">Host Integration</a></li>" +			
			"<li><a href=\"../CTI/index.html\">CTI</a></li>" +
			"<li><a href=\"../Products/index.html\">Products</a></li>" +
			"<li><a href=\"../Customers/index.html\">Customers</a></li>" +			
			"<li><a href=\"../Company/index.php\">Company</a></li>" +	
			"<li><a href=\"../Contact/index.html\">Contact Us</a></li>" +
			"<li><a href=\"../index.html\">Home</a></li>" +
		"</ul>";
}


