function popFlash(url,w,h) {
	var width = w;
	var height = h;
	var str;
	var file = url;
	
	winDef = 'status=no,resizable=no,scrollbars=yes,toolbar=no,location=no,fullscreen=no,titlebar=yes,height='.concat(height).concat(',').concat('width=').concat(width).concat(',');
	winDef = winDef.concat('top=').concat((screen.height - height)/2).concat(',');
	winDef = winDef.concat('left=').concat((screen.width - width)/2);
	newwin = open('', '_blank', winDef);
	newwin.document.writeln('<body topmargin="0" leftmargin="0" marginheight="0" marginwidth="0">');
	newwin.document.writeln('<table cellpadding="0" cellspacing="0" border="0" width="100%">');
	newwin.document.writeln('<tr>');
	newwin.document.writeln('<td align="center">');
	str = '<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0" width="';
	str = str.concat(width);
	str = str.concat('" height="').concat(height);
	str = str.concat('">');
	str = str.concat('<param name="movie" value="');
	str = str.concat(file);
	str = str.concat('">');
	str = str.concat('<param name="quality" value="high">');
	str = str.concat('<embed src="');
	str = str.concat(file);
	str = str.concat('" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="');
	str = str.concat(width);
	str = str.concat('" height="');
	str = str.concat(height);
	str = str.concat('"></embed>');
	str = str.concat('</object>');
	
	newwin.document.writeln(str);
	newwin.document.writeln('<td>');
	newwin.document.writeln('</tr>');
	newwin.document.writeln('</table>');
	newwin.document.writeln('</body>');
}
