
/* hide and show div stuff. */
function showDiv(id)
{
	document.getElementById(id).style.display="inline"; 
}
function closeDiv(id)
{
	document.getElementById(id).style.display="none"; 
}


function confirm_action(message,newurl)
{
	if(confirm(message))
	{
		window.location.href = document.URL+newurl;
	}else{	
	}
}

function obfuscate_email(first,second,last)
{
  prefix ="mailto:";
  
  document.write('<a href="'+prefix+first+second+'@'+last+'">'+first+second+'@'+last+'</a>');
}
