<!--


//set focus on form

function select() {
  document.join.join_a.select();
}

// lightweight hiding of email address

function mailRHF1(sub1,sub2) 
{
 var username = 'info';
 var domain = 'radioheritage.net';
 var subject = '?subject=';
 var content = '&body=';
 document.location = 'mailto:' + username + '@' + domain + subject + sub1 + content + sub2;
 } 

function validate2( form )
{
  if 	(form.join_a.value == "" ||
	form.join_a.value.indexOf('@', 0) == -1 ||
	form.join_a.value.length>50) 
{
    alert('Please enter a valid email address' );
    form.join_a.focus();
    return false ;
  }
}

//onMouseover show hidden sign

function show(ID) {

	if (document.getElementById(ID)=="img1")
	{document.write("<p>name1");
	}
}

//onMouseout hide sign (unless it's the current menu selection)

function hide(ID) {
	document.getElementById(ID+'GT').style.visibility="hidden";
	
}



//-->

	document.getElementById(ID+'GT').style.visibility="visible";	