function wflash(banner, theWidth, theHeight,theNameID) {
	output = "<object classid=\"clsid:d27cdb6e-ae6d-11cf-96b8-444553540000\" codebase=\"http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0\" width=\"" + theWidth + "\" height=\"" + theHeight + "\" id=\"" + theNameID + "\" name=\"" + theNameID + "\"   align=\"middle\">  ";
	output += "<param name=\"allowScriptAccess\" value=\"always\" />  ";
	output += "<param name=\"movie\" value=\"" + banner + ".swf\" />  ";
	output += "<param name=\"quality\" value=\"high\" />  ";
	output += "<param name=\"wmode\" value=\"transparent\">  ";
	output += "<param name='allowFullScreen' value='true'/>";
	output += "<param name='allowScale' value='true'/>";

	 
	output += "<embed src=\"" + banner + ".swf\" allowScale=\"true\" allowFullScreen=\"true\" quality=\"high\" wmode=\"transparent\" width=\"" + theWidth + "\" height=\"" + theHeight + "\" id=\"" + theNameID + "\"  name=\"" + theNameID + "\" align=\"middle\" allowScriptAccess=\"always\" type=\"application/x-shockwave-flash\" pluginspage=\"http://www.macromedia.com/go/getflashplayer\" '  />  ";
	output += "</object>  ";
	document.write(output);
}



