// JavaScript Document

function toggle( targetId ){
  if (document.getElementById){
  		target = document.getElementById( targetId );
  			if (target.style.display == "none"){
  				target.style.display = "";
  			}
			else {
  				target.style.display = "none";
  			}
  	}
}


function toggler( targetTag ){
  if (document.getElementById){
  		target = document.getElementsByTagName( targetTag );
  			if (target.style.display == "none"){
  				target.style.display = "";
  			}
			else {
  				target.style.display = "none";
  			}
  	}
}

function toggledisplayon( targetId ) {
  if (document.getElementById){
  		target = document.getElementById( targetId );
  			if (target.style.display == "none"){
  				target.style.display = "";
  			}
			else {
  				target.style.display = "";
  			}
  	}
}

function toggledisplayoff( targetId ) {
  if (document.getElementById){
  		target = document.getElementById( targetId );
  			if (target.style.display == ""){
  				target.style.display = "none";
  			}
			else {
  				target.style.display = "none";
  			}
  	}
}

function toggleemail( targetId ){
  if (document.getElementById){
  		target = document.getElementById( targetId );
  			if (target.style.display == "none"){
  				target.style.display = "";
  			}
			else {
  				target.style.display = "none";
  			}
  	}
}

function initMail(form) {
text = "Check out this article posted on www.JoCoBusiness.net:  " + window.location;
form.message.value = "Hello " + form.sendto.value + " (" + form.to.value + "):\n\n"
 + text + "\n\nYour Friend,\n" + form.sendername.value + "(" + form.senderemail.value + ")";
return (form.to.value != "");
}