function ShowFlashWindow(title, src, width, height)
{
	obj = window.open("", "3d", "scrollbars=0,dialog=0,minimizable=1,modal=1,width="+width+",height="+height+",resizable=0");
	obj.document.write("<html>");
	obj.document.write("<head>");
	obj.document.write("<title>"+title+"</title>");
	obj.document.write("</head>");
	obj.document.write("<body topmargin=0 leftmargin=0 marginwidth=0 marginheight=0>");
	obj.document.write("<object classid=\"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000\" codebase=\"http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0\" width=\"" + width + "\" height=\"" + height + "\">");
	obj.document.write("<param name=\"movie\" value=\"" + src + "\" />");
	obj.document.write("<param name=\"quality\" value=\"high\" />");
	obj.document.write("<embed src=\"" + src + "\" quality=\"high\" pluginspage=\"http://www.macromedia.com/go/getflashplayer\" type=\"application/x-shockwave-flash\" width=\"" + width + "\" height=\"" + height + "\" autostart=\"true\"></embed>");
	obj.document.write("</object>");
	obj.document.write("</body>");
	obj.document.write("</html>");
	obj.document.close();
return false;
}