function showImage(imgnm) {
	ipath = imgnm;
	document.write("<table border='0' cellspacing='0' cellpadding='0'>");
	document.write("<tr>");
	document.write("<td>");
	document.write("<img src='"+ipath+"' class='shadowedimg'>");
	document.write("</td>");
	document.write("<td class='imgSideShadow'><img src='images/shadows/imageTop.gif' width='8' height='8'></td>");
	document.write("</tr>");
	document.write("<tr>");
	document.write("<td class='imgBottomShadow'><img src='images/shadows/imageLeft.gif' width='8' height='8'></td>");
	document.write("<td class='imgCornerShadow'></td>");
	document.write("</tr>");
	document.write("</table>");
}

function showCopyright() {
	document.write("&copy; 2005 Andrea Nelson, Dan Costanza");
	document.write(" - ");
	document.write("Site design by <a href='http://www.michaelshaheen.com'>Michael Shaheen</a>");
}

function launchWin(url,wdt,hgt) {
	scrCenter_x = screen.width/2;
	scrCenter_y = screen.height/2;
	pop_left = scrCenter_x - (wdt/2);
	pop_top = scrCenter_y - (hgt/2) - 30;
	params = "directories=no,height="+hgt+",width="+wdt+",top="+pop_top+",left="+pop_left+",location=no,menubar=no,resizable=yes,scrollbars=no,status=no,toolbar=no"
	window.open(url,'pop',params);
}
