function showFlash(filename, setWidth, setHeight)
{
	myWindow=window.open('','','width=' + (setWidth + 20) + ',height=' + (setHeight + 20) + ',toolbar=no,menubar=no,location=no,status=no,titlebar=no,resizable=no');
	myWindow.document.write('<HTML><HEAD></HEAD><BODY>');
	myWindow.document.write('<OBJECT classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0" WIDTH="' + setWidth + '" HEIGHT="' + setHeight + '">');
	myWindow.document.write('<PARAM NAME=movie VALUE="/Video Library/' + filename + '">');
	myWindow.document.write('<PARAM NAME=quality VALUE=high>');
	myWindow.document.write('<PARAM NAME=bgcolor VALUE=#ffffff>');
	myWindow.document.write('<EMBED src="/Video Library/' + filename + '" quality=high bgcolor=#ffffff  WIDTH="' + setWidth + '" HEIGHT="' + setHeight + '" TYPE="application/x-shockwave-flash" PLUGINSPAGE="http://www.macromedia.com/go/getflashplayer"></EMBED>');
	myWindow.document.write('</OBJECT>');
	myWindow.document.write('</BODY></HTML>');
	myWindow.document.close();
}
