function enlarge_movie(picname,caption)
{
	var i;

	picWindow=window.open("","displayWindow","toolbar=0,scrollbars=1,menubar=0,resizable=1,width=700,height=700,status=1");
	picWindow.document.writeln("<html>");
	picWindow.document.writeln("<body background='images/parchment.gif'>");
	picWindow.document.writeln("<center>");	
	picWindow.document.writeln("<div id='vid'></div>");
	picWindow.document.writeln("<object type=\"application/x-shockwave-flash\" width=\"400\" height=\"290\" wmode=\"transparent\" data=\"flvplayer.swf?file=" + picname + "&autoStart=true\"><param name=\"movie\" value=\"flvplayer.swf?file=" + picname + "&autoStart=true\" /><param name=\"wmode\" value=\"transparent\" /></object>");
	picWindow.document.writeln("<br>");
	picWindow.document.writeln(caption);
	picWindow.document.writeln("</center>");
	picWindow.document.writeln("</body></html>");
	picWindow.document.close();
}
