// JavaScript Document
function makeFlash(src,width,height) { 
	var objFlash;
	if (src != "") {
        objFlash = '<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" ';
		objFlash += 'codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0" width="' + width + '" height="' + height + '" align="top"> ';
		objFlash += '<param name="movie" value="' + src + '">';
		objFlash += '<param name="quality" value="high">';
		objFlash += '<param name="wmode" value="transparent">';
		objFlash += '<embed src="' + src + '" width="' + width + '" height="' + height + '" align="top" quality="high" ';
		objFlash += 'pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash">';
		objFlash += '</embed>';
		objFlash += '</object>';

		document.write(objFlash);
    }
	return;
}

