window.Actions = { 

					swfCreate: function (impactDivId, swfName, swfId, width, height, background) {
					
						document.getElementById(impactDivId).innerHTML = "<div style=\"width:" + width +"px; height:" + height +"px\">This site requires Flash 7 or higher<br><a href=\"http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash&Lang=english\" target=\"_blank\">Download</a></div>";
	
						var so = new lc_SWFObject(swfName, swfId, width, height, '7', background);
	
						so.addParam("build", "0");
						so.addParam("allowfullscreen", "true");
						so.addParam('allowscriptaccess', 'always');
						so.addParam("wmode", "transparent");
			
						so.write(impactDivId);
					}
				}

window.Site = {
					start: function(){

						Actions.swfCreate('player', 'http://www.detubarrio.com/images/player.swf', 'player', '195', '15', '#FF0000');
;
					}			
			  }

window.addEvent('domready', Site.start);


