function fnPost(ctl,frm_name)
{
	var theForm = document.getElementById(frm_name);
	var cPost = document.getElementById('cPost');
	
	if (cPost)
	{
	   cPost.value=ctl.id;
	   if (theForm)
          theForm.submit();
	}   
	return false;
}



function fnDumpEmail(emailE)
{                  
	document.write('<A href="mailto:' + emailE + '">' + emailE + '</a>');
}
	
