function createFlash(fPath,fBase,fWidth,fHeight,fAlt,fID,fVars) {
	var newFlash = '<!--[if IE]>';
	newFlash += '<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0" width="'+fWidth+'" height="'+fHeight+'" id="'+fID+'">';
	newFlash += '<param name="movie" value="'+fPath+'">';
	newFlash += '<param name="FlashVars" value="'+fVars+'">';
	newFlash += '<param name="allowScriptAccess" value="sameDomain">';
	newFlash += '<param name="quality" value="best">';
	newFlash += '<param name="wmode" value="transparent">';
	newFlash += '<param name="base" value="'+fBase+'">';
	newFlash += fAlt;
	newFlash += '</object>';
	newFlash += '<![endif]-->';
	newFlash += '<!--[if !IE]> <--> ';
	newFlash += '<object type="application/x-shockwave-flash" data="'+fPath+'" width="'+fWidth+'" height="'+fHeight+'" id="'+fID+'">';
	newFlash += '<param name="FlashVars" value="'+fVars+'">';
	newFlash += '<param name="allowScriptAccess" value="sameDomain">';
	newFlash += '<param name="quality" value="best">';
	newFlash += '<param name="wmode" value="transparent">';
	newFlash += '<param name="base" value="'+fBase+'">';
	newFlash += fAlt;
	newFlash += '</object>';
	newFlash += '<!--> <![endif]-->';
	return newFlash;
}

function addFlash(fPath,fWidth,fHeight,fAlt,fID,fVars) {
	var theFlasher = createFlash(fPath,fWidth,fHeight,fAlt,fID,fVars);
	document.write(theFlasher);
}