//       This is the script that reads the email address
<!-- 
function bwEmail(name) {
    var host = "bigwits.com";
    var delim = "\@";
    var href = 'mailto:';
    var text = '\<a href="' + href + name + delim + host + '">';
document.write(text); 
}
// -->

//Javascripted History

<!-- Hide from old browsers
	function goback() {
		history.back(1)
	}
// End Hide-->




//      This opens files in new pages.

<!-- Begin
function openAWindow( pageToLoad, winName, width, height,
center) 
{ 

xposition=0; yposition=0;
if ((parseInt(navigator.appVersion) >= 4 ) &&
(center)){
xposition = (screen.width - width) / 0;
yposition = (screen.height - height) / 0; 

} 

args = "width=" + width + "," 
+ "height=" + height + "," 
+ "location=50," 
+ "menubar=0,"
+ "resizable=1,"
+ "scrollbars=1,"
+ "status=0," 
+ "titlebar=0,"
+ "toolbar=0,"
+ "hotkeys=0,"
+ "screenx=" + xposition + "100," //NN Only
+ "screeny=" + yposition + "100," //NN Only
+ "left=" + xposition + "100," //IE Only
+ "top=" + yposition + "100,"//IE Only 

window.open( pageToLoad,winName,args ); 


} 
// End -->
