function openWin( winWidth, winHeight, picSrc ){
	newWin = window.open('', '', 'height='+ winHeight + ',width='+ winWidth + 'toolbars=no, scrollbars=no' );
	newWin.document.write("<head><title>"+ picSrc +"<\/title><\/head>");
	newWin.document.write("<center>");
	newWin.document.write("<img src=" + picSrc + ">");
	newWin.document.write("<br/><br/><form><input type='button' value='Close' onclick='JavaScript:window.close()'>");
	newWin.document.write("<\/form><\/center>");
}
