// JavaScript Document
function writeDiv(flashFile,targetDiv,newWidth,newHeight,thaBGColor,fVars){
	var theHTML = "";
	theHTML += "<object classid='clsid:D27CDB6E-AE6D-11cf-96B8-444553540000' codebase='http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0' width='"+newWidth+"' height='"+newHeight+"'>";
	theHTML += "<param name='movie' value='"+flashFile+"'>";
	theHTML += "<param name='quality' value='high'>";
	if(fVars){
		theHTML += "<param name='FLASHVARS' value='"+fVars+"'>";
		theHTML += "<embed src='"+flashFile+"' flashvars='"+fVars+"'quality='high' pluginspage='http://www.macromedia.com/go/getflashplayer' type='application/x-shockwave-flash' width='"+newWidth+"' height='"+newHeight+"'></embed>";
	}else{
  		theHTML += "<embed src='"+flashFile+"' quality='high' pluginspage='http://www.macromedia.com/go/getflashplayer' type='application/x-shockwave-flash' width='"+newWidth+"' height='"+newHeight+"'></embed>";
	}
	theHTML += "</object>";
	document.getElementById(targetDiv).innerHTML = theHTML;
}