function doDownload(file)
{
 	window.open('wsdl.htm?file='+file, 'mresdl', 
		'width=400,height=400,address=no,toolbar=no')
}		

function person ()  // template for contrib person
{
	var ret = new Object();
	this.name="";
	this.email="";
	return ret;
}

var contrib = new Array(); // creates array
contrib[0]=person(); // sets element to a person
contrib[0].name="Jason Wellband"; 
contrib[0].email="mathresources@aug.edu";

var email="mathresources@aug.edu";

function doPopUp (url,width,height,extra)
{
	window.open(url,'mapletutpopup','width=' + width + ', height=' + height + extra);
}

function writeHeader (id)
{
	document.writeln('<H1 CLASS="Title"><A NAME="top">'+document.title+'</A></H1>');
	document.writeln('<P>&nbsp;</P>');
	document.writeln('<P ALIGN="CENTER">'+contrib[id].name+'</P>');
	document.writeln('<P ALIGN="CENTER"><A HREF="mailto:'+contrib[id].email+'">'+contrib[id].email+'</A></P>');
	document.writeln('<P ALIGN="CENTER">Copyright 2001, '+contrib[id].name+'</P>');
	document.writeln('<P ALIGN="CENTER">All reserved trademarks are property of their respective owners.</P>');
	document.writeln('<P>&nbsp;</P>');
}