// JavaScript Document
function showMenu(menuName, profile){
	if(menuName.length != 0) {
		document.getElementById(menuName).style.visibility = "visible";
		document.getElementById(menuName).style.color= "#336699";
	}
	if(profile.length != 0){
		document.getElementById(profile).style.background = "#EFEFEF";
		document.getElementById(profile).style.color = "#336699";
	}
}
function hideMenu(menuName, profile){
	if(menuName != "")
		document.getElementById(menuName).style.visibility = "hidden";
	if(profile != "")
		document.getElementById(profile).style.background = "#336699";
}
function subOn(id){
	if(id!= "")
		document.getElementById(id).style.background = "#336699";
}
function subOff(id){
	if(id != "")
		document.getElementById(id).style.background = "#990000";
}

var prog1 = new Array("CALTRADE Terms of Use","<h3>EXTERNAL MESSAGING</h3><p>&ndash;Please be selective in messaging to our members.  In general, sending more than a few messages on a given day will be considered spam.  Advertising for MLM or Network Marketing is not permitted with this service.  The System Operator reserves the right to block, ban or take legal action against any company that violates these terms.<h3>ACCOUNTS &amp; PROFILES</h3><ol><li>Accounts are provided without charge for an indefinite period for California firms and professionals only.</li><li>The System Operator reserves the right to remove any profile, or to refuse to accept any profile, for any reason.</li>	<li>Please do not spam this system in any way.  While we hope and expect you will communicate with other professionals you meet here, thoughtless repetition of the same message (aka spam) will be cause for account termination.</li><li>Please do not share your password (except perhaps with an administrative assistant).  This site is monitored for IP traffic and access is for registered users only. </li><li>Please use proper punctuation (i.e. no &quo;all caps&quo;) and make your business profile as complete and as professional as possible&ndash; all contact information is subject to verification.  To remove or deactivate your account write the System Operator at the link below.</li></ol>");
function popUp(myDef) {
ecfDefinition = window.open("","CalTrade","toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=0,resizable=0,width=500,height=400,left=490,top=262");
var preContent = "<!DOCTYPE HTML PUBLIC '-//W3C//DTD HTML 4.01 Transitional//EN''http://www.w3.org/TR/html4/loose.dtd'><html><head><title>"+myDef[0]+"</title><meta http-equiv='Content-Type' content='text/html; charset=iso-8859-1'><LINK HREF='styles.css' TYPE='text/css' REL='stylesheet'></head><body bgcolor='#336699' topmargin=0 leftmargin=0 bottommargin=0 rightmargin=0><table cellspacing=0 cellpadding=5 width=95% align='center'><tr><td bgcolor='white' class='definitionHeader'><h5>CALTRADE Terms of Use</h5><p><p>";

var postContent ="<p><a href='#' onClick='javascript:window.close()'>Close</a><br><br></td></tr></table></body></html>";
ecfDefinition.document.write(preContent);
ecfDefinition.document.write(myDef[1]);
ecfDefinition.document.write(postContent);
ecfDefinition.document.close();
}