// JavaScript Document
function expandcollapse (name, requestor) { 

   whichdiv = document.getElementById(name); 
   if (whichdiv.className=="show") { 
      whichdiv.className="hide"; 
   } 
   else { 
      whichdiv.className="show"; 
   } 
   
  if(requestor) {
	linker = document.getElementById(requestor);
     if (linker.className=="ftntopen") { 
	    linker.className="ftnt";
     } 
     else { 
	    linker.className="ftntopen";
     } 
  }
   
} 

function reshow (name) { 
   whichdiv = document.getElementById(name); 
   whichdiv.className="show"; 
   }  

function rehide (name) { 
   whichdiv = document.getElementById(name); 
   whichdiv.className="hide"; 
   } 
   
function emailobs (email) { 
	var string1 = email;
	var string2 = "@";
	var string3 = "molewskifinancial.com";
	var string4 = string1 + string2 + string3;
	document.location="mail" + "to:" + string4;
}

function MM_goToURL() { //v3.0
  var i, args=MM_goToURL.arguments; document.MM_returnValue = false;
  for (i=0; i<(args.length-1); i+=2) eval(args[i]+".location='"+args[i+1]+"'");
}
