// JavaScript Document

function a(strStyle, strTag)
{
	var part1 = '<a ';
	var part3 = ' href="mai';
	
	if (strTag == '')
	{
		strTag = 'Bernie Koenig <&#103;&#100;&#118;&#105;&#098;&#101;@&#115;&#121;&#109;&#112;&#097;&#116;&#105;&#099;&#111;&#046;&#099;&#097;>';
	}
	
	document.write(part1.concat(strStyle.concat(part3)));
	//document.write('<a class="footer-link" id="contact-footer" href="mai');
	document.write('lto');
	document.write(':Bernie Koenig <&#103;&#100;&#118;&#105;&#098;&#101;');
	document.write('@');
	document.write('&#115;&#121;&#109;&#112;&#097;&#116;&#105;&#099;&#111;&#046;&#099;&#097;>">');
	document.write(strTag);
	document.write('<\/a>');	
}


function w(strStyle)
{
	var part1 = '<a ';
	var part3 = ' href="mai';
		
	document.write(part1.concat(strStyle.concat(part3)));
	//document.write('<a class="footer-link" id="contact-footer" href="mai');
	document.write('lto');
	document.write(':Wendy Saby <&#119;&#101;&#110;&#100;&#121;&#115;&#097;&#098;&#121;');
	document.write('@');
	document.write('&#114;&#111;&#103;&#101;&#114;&#115;&#046;&#099;&#111;&#109;>">');
	document.write('Wendy Saby');
	document.write('<\/a>');		
}

function l(strStyle)
{
	var part1 = '<a ';
	var part3 = ' href="mai';
		
	document.write(part1.concat(strStyle.concat(part3)));
	//document.write('<a class="footer-link" id="contact-footer" href="mai');
	document.write('lto');
	document.write(':L. Ling <&#108;&#105;&#110;&#103;&#046;&#119;&#101;&#101;&#100;');
	document.write('@');
	document.write('&#103;&#109;&#097;&#105;&#108;&#046;&#099;&#111;&#109;>">');
	document.write('L. Ling');
	document.write('<\/a>');		
}

function j(strStyle)
{
	var part1 = '<a ';
	var part3 = ' href="mai';
		
	document.write(part1.concat(strStyle.concat(part3)));
	//document.write('<a class="footer-link" id="contact-footer" href="mai');
	document.write('lto');
	document.write(':J. Weed <&#108;&#105;&#110;&#103;&#046;&#119;&#101;&#101;&#100;');
	document.write('@');
	document.write('&#103;&#109;&#097;&#105;&#108;&#046;&#099;&#111;&#109;>">');
	document.write('J. Weed');
	document.write('<\/a>');		
}

var newWin = null;
function popUp(strURL, strType, strHeight, strWidth) {
 if (newWin != null && !newWin.closed)
   newWin.close();
 var strOptions="";
 if (strType=="console")
   strOptions="resizable,height="+
     strHeight+",width="+strWidth;
 if (strType=="fixed")
   strOptions="status,height="+
     strHeight+",width="+strWidth;
 if (strType=="elastic")
   strOptions="toolbar,menubar,scrollbars,"+
     "resizable,location,height="+
     strHeight+",width="+strWidth;
 newWin = window.open(strURL, 'newWin', strOptions);
 newWin.focus();
}
