<!--
function fechaJanela(){
	document.getElementById("brindes").style.display = "none";
}

function EscreveFlash(width, height, src, id){
	var Swf;
	
	Swf = "<object classid=\"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000\" codebase=\"http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,0,0\" id="+id+" width="+width+" height="+height+">";
	Swf += "<param name=\"movie\" value="+src+" />";
	//Swf += "<param name=\"allowScriptAccess\" value=\"sameDomain\" />";
	Swf += "<param name=\"quality\" value=\"high\" />";
	Swf += "<param name=\"wmode\" value=\"transparent\" />";
	Swf += "<param name=\"menu\" value=\"false\" />";
	Swf += "<embed id="+id+" name="+id+" allowScriptAccess=\"sameDomain\" swLiveConnect=\"true\" src="+src+" quality=\"high\" wmode=\"transparent\" pluginspage=\"http://www.macromedia.com/go/getflashplayer\" type=\"application/x-shockwave-flash\" width="+width+" height="+height+"></embed></object>";
	
	this.document.write(Swf);
}

function EscreveFlash2(width, height, src, id, banner){
	var Swf;
	
	Swf = "<object classid=\"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000\" codebase=\"http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,0,0\" id="+id+" width="+width+" height="+height+">";
	Swf += "<param name=\"movie\" value=\""+src+"?banner="+banner+"\" />";
	//Swf += "<param name=\"allowScriptAccess\" value=\"sameDomain\" />";
	Swf += "<param name=\"quality\" value=\"high\" />";
	Swf += "<param name=\"wmode\" value=\"transparent\" />";
	Swf += "<param name=\"menu\" value=\"false\" />";
	Swf += "<embed id="+id+" name="+id+" allowScriptAccess=\"sameDomain\" swLiveConnect=\"true\" src=\""+src+"?banner="+banner+"\" quality=\"high\" wmode=\"transparent\" pluginspage=\"http://www.macromedia.com/go/getflashplayer\" type=\"application/x-shockwave-flash\" width="+width+" height="+height+"></embed></object>";
	
	this.document.write(Swf);
} 
-->