// JavaScript Document

function wflash(src, w, h) {
	var html = "";
	html = html + '<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,0,0" ';
	html = html + 'width="' + w + '" height="' + h + '" id="start" align="middle">';
	html = html + '<param name="allowScriptAccess" value="sameDomain" />';
	html = html + '<param name="allowFullScreen" value="false" />';
	html = html + '<param name="movie" value="' + src + '" />';
	html = html + '<param name="quality" value="high" />';
	html = html + '<param name="wmode" value="transparent" />';
	html = html + '<param name="bgcolor" value="#ffffff" />	';
	html = html + '<embed src="' + src + '" quality="high" bgcolor="#ffffff" wmode="transparent" width="' + w + '" height="' + h + '" name="start" align="middle" ';
	html = html + 'allowScriptAccess="sameDomain" allowFullScreen="false" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" />';
	html = html + '</object>';
	document.write(html);
}
