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


    
    
    