/**
 * @author Diego
 */

function generateSwfBanner(sUrl, sAncho, sAlto, oFlashvars, oParams, oAttributes)
{
	var sIdGenerated = 'flash-'+((Math.random().toString().substr(2, 10)));
	sDiv = '<div id="'+sIdGenerated+'">&nbsp;</div>';
	document.write(sDiv);
	swfobject.embedSWF(sUrl, sIdGenerated, sAncho, sAlto, "9.0.0",false, oFlashvars, oParams, oAttributes);
}

