//
// Bishop Computing scripts
//

function writeHeaderBC(parm1,parm2) {
 	document.write('<html><head>');
	document.write('<title>'+parm1+'</title>');
 	document.write('<meta name="description" content="Bishop Computing - Columbia, Missouri">');
 	document.write('</head>');
	document.write('<body text="Black" link="Green" vlink="Red" leftmargin="60" marginwidth="60" background="/wfbishop/images/bg.jpg">');
	document.write('<center>');
	document.write('<br><font size="+2" color="blue">'+parm1+'</font>');
	document.write('<br><font size="+1" color="blue">'+parm2+'</font>');
	document.write('</center>');
}

function writeFooterBC(parm3) {
	document.write('<br><div align=center><font Size=-2 color=Black>');
	document.write('<a href="/wfbishop/">[Bishop Computing]</a> &nbsp;');
	document.write('<a href="javascript:history.go(-1)">[Return]</a><br>');
	document.write('<img src="/wfbishop/images/rainline.jpg" width=540 height=2>');
	document.write('<em><br>Webpages/Copyright <a href="http://home.centurytel.net/wfbishop/index.html">Bishop Computing</a> 2010');
	document.write('<br>Date last modified: '+parm3);
	document.write('</em></font></div><br>');
}

function textSize(arg) { 
	var center = document.getElementById('textID'); 
	if (arg == 'reset') { 
		center.style.fontSize = '0.6em'; 
	} else if (arg == 'big') { 
		center.style.fontSize = '0.8em'; 
	} else if (arg == 'smaller') { 
		center.style.fontSize = '0.8em'; 
	} else if (arg == 'bigger') { 
		center.style.fontSize = '1.0em'; 
	} else if (arg == 'plus') { 
		center.style.fontSize = '1.2em'; 
	} 
} 



