// JavaScript Document
function writeSwf(val, swf, top, zindex){
	/*var _body = document.getElementsByTagName('body')[0];	
	var _flash = "";
	
	_flash+='<style type="text/css">body{height:100%;position:relative; }</style><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="100%" height="130">';
	_flash+='<param name="movie" value="http://www.develoweb.pe/TemplatesFlash/'+swf+'.swf?urlSonido='+val+'" />';
	_flash+='<param name="quality" value="high" />';
	_flash+='<param name="wmode" value="transparent" />';
	_flash+='<embed src="http://www.develoweb.pe/TemplatesFlash/'+swf+'.swf?urlSonido='+val+'" wmode="transparent" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="100%" height="130"></embed>';
    _flash+='</object>';
	
	var _div  = document.createElement('div');
	_div.style.position="absolute";
	_div.style.left="0px";
	_div.style.top=top+"px";
	_div.style.width="100%";
	_div.style.zIndex=zindex;
	_div.innerHTML = _flash;
	_body.insertBefore(_div, document.body.firstChild);*/
	
}



function writeSwfBottom(swf){
	/*var _body = document.getElementsByTagName('body')[0];	
	var _flash = "";
	
	_flash+='<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="100%" height="380">';
	_flash+='<param name="movie" value="http://www.develoweb.pe/TemplatesFlash/'+swf+'.swf" />';
	_flash+='<param name="quality" value="high" />';
	_flash+='<param name="wmode" value="transparent" />';
	_flash+='<embed src="http://www.develoweb.pe/TemplatesFlash/'+swf+'.swf" wmode="transparent" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="100%" height="380"></embed>';
    _flash+='</object>';
	
	var _div  = document.createElement('div');
	
	_div.style.position="absolute";
	_div.style.left="0px";
	_div.style.bottom ="0px";
	_div.style.width="100%";
	_div.style.zIndex="-100";
	_div.innerHTML = _flash;
	_body.insertBefore(_div,document.getElementById("window"));*/
}
