self.name = "main";
function openWin(width, height, imagewidth, imageheight, pic) {
        picWin = open("", "popup", "width=" + width + ",height=" + height + ",toolbar=yes,directories=no,status=no,location=no,scrollbars=yes,resizable=no,menubar=no");
        picWin.document.open();
        picWin.document.clear();
        picWin.document.writeln("<html><head><title>Scott Leathers</title></head><body bgcolor=\"#333366\" leftmargin=\"0\" topmargin=\"0\" marginwidth=\"0\" marginheight=\"0\"><table width=\"100%\" height=\"100%\" cellpadding=0 cellspacing=0 border=0><tr><td valign=\"middle\" align=\"center\"><img src=\"images/" + pic + ".jpg\" width=\"" + imagewidth + "\" height=\"" + imageheight + "\" alt=\"enlarged image\"></td></tr><tr><td align=\"center\"></td></tr></table></body></html>");
        picWin.document.close();
}

function changeImage(newImg) {
	document.mainimage.src = "images/" + newImg + "big.jpg";
}
