function openwindow(imageName,imageWidth,imageHeight) {
	imageBox = imageHeight+35;
	newWindow = window.open("","","width="+imageWidth+",height=" + imageBox + ",resizable=yes,scrollbars=no,menubar=no,toolbar=no,location=no,directories=no,status=no");
	newWindow.document.open();
	newWindow.document.write('<html><head><title>Kathy Casey</title></head><body style="background-color: #ffffff; padding: 0; margin: 0; font-family: Arial, Helvetica, San-Serif; font-size: 10px; color: #3366CC;">'); 
	newWindow.document.write('<img src='+imageName+' width='+imageWidth+' height='+imageHeight+'>'); 
	newWindow.document.write('<div style="padding-top: 5px; padding-left: 10px;">PC Users: Left-click the image to save a larger version.<br>MAC Users: Option-click the image to save a larger version.</div></body></html>'); 
	newWindow.document.close();
	newWindow.focus();
}

function openwindow02(theURL,width,height) {
    window.open(theURL,'KC','width=' + width + ',height=' + height + ',resizable=yes,scrollbars=yes,menubar=yes,toolbar=yes,location=yes,directories=no,status=no');
}

