function openwin(picnum) {

desc = new Array()
desc[0]="Marcus Cole explains the economic functions of contract law.";
desc[1]="Marcus Cole explains the tragedy of the commons and the benefits of private property.";
desc[2]="David Henderson explains the joy of free markets.";
desc[3]="David Henderson with his book, 'The Joy of Freedom.'";
desc[4]="";
desc[5]="Rob McDonald explains the roots of American independence and freedom.";
desc[6]="Randy Barnett explains the natural rights formulation of the U.S. Constitution.";
desc[7]="Charlotte Twight with a book explaining how to get money from the taxpayers.";
desc[8]="Charlotte Twight explains how power is accumulated.";
desc[9]="R.J. Smith lectures on the environment.";
desc[10]="Hans Stein showing how Germany has fallen in the 'Economic Freedom of the World' ratings.";
desc[11]="Tom Palmer quoting from the Book of Exodus.";
desc[12]="";

img = new Array()
img[0]='<img src="images/sumsem2003/0002385-020_l.jpg" width="550" height="371" alt="' + desc[0] + '" />';
img[1]='<img src="images/sumsem2003/0002402-027_l.jpg" width="550" height="371" alt="' + desc[1] + '" />';
img[2]='<img src="images/sumsem2003/0002383-015_l.jpg" width="550" height="371" alt="' + desc[2] + '" />';
img[3]='<img src="images/sumsem2003/0002397-006_l.jpg" width="550" height="371" alt="' + desc[3] + '" />';
img[4]='<img src="images/sumsem2003/0002392-006_l.jpg" width="550" height="371" alt="' + desc[4] + '" />';
img[5]='<img src="images/sumsem2003/0002373-036_l.jpg" width="550" height="371" alt="' + desc[5] + '" />';
img[6]='<img src="images/sumsem2003/0002384-008_l.jpg" width="550" height="371" alt="' + desc[6] + '" />';
img[7]='<img src="images/sumsem2003/0002382-034_l.jpg" width="550" height="371" alt="' + desc[7] + '" />';
img[8]='<img src="images/sumsem2003/0002382-001_l.jpg" width="550" height="371" alt="' + desc[8] + '" />';
img[9]='<img src="images/sumsem2003/0002388-022_l.jpg" width="250" height="371" alt="' + desc[9] + '" />';
img[10]='<img src="images/sumsem2003/0002378-036_l.jpg" width="550" height="371" alt="' + desc[10] + '" />';
img[11]='<img src="images/sumsem2003/0002392-035_l.jpg" width="550" height="371" alt="' + desc[11] + '" />';
img[12]='<img src="images/sumsem2003/0002392-034_l.jpg" width="550" height="371" alt="' + desc[12] + '" />';

HTMLstring='<html>\n';
HTMLstring+='<head>\n';
HTMLstring+='<title>Cato University Summer Seminar 2003 Photos</title>\n';
HTMLstring+='</head>\n';
HTMLstring+='<body>\n';
	if (picnum!="") {
		i=picnum;
		HTMLstring+=img[i];
		HTMLstring+='<br />' + desc[i];
	}
HTMLstring+='</body>\n';
HTMLstring+='</html>';

newwindow=window.open('','cc200','width=580,height=450,resizable=yes,statusbar=yes,scrollbars=yes,');
newdocument=newwindow.document;
newdocument.write(HTMLstring);
newdocument.close();
}

