// JavaScript Document
function abreflash(src,wi,he){
	document.write('<oject type="application/x-shockwave-flash" data="' + src + '" width="' + wi + '" height="' + he + '">');
	document.write('<param name="movie" value="' + src + '">');
	document.write('<param name="quality" value="high">');
	document.write('<param name="wmode" value="transparent">');
	document.write('<embed src="' + src + '" width="' + wi + '" height="' + he + '" quality="high" wmode="transparent"  pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash"></embed>');
}