/* ------------------------------
Write Email Address
-------------------------------- */
function DESemail(emailname,emailserver) {
	document.write("<a href='mailto:" + emailname + "@" + emailserver +"'>");
	document.write(emailname + "@" + emailserver); 
	document.write("</a>"); 
}
/* ------------------------------
Expand Collapse
-------------------------------- */
function expandCollapse() {
   for (var i=0; i<expandCollapse.
   arguments.length; i++) {
      var element = document.getElementById
      (expandCollapse.arguments[i]);
      element.style.display = (element.style.
      display == "none") ? "block" : "none";
	 }
}
function toggle(theDiv) {
     var elem = document.getElementById(theDiv);
     elem.style.display = (elem.style.display == "none")?"":"none";
}
// Accessible Pop Ups
function DESopen(url,width,height,toolbar) {
	window.open(url, "", "toolbar="+toolbar+",height="+ height +",width="+width);
	return false;
}