

function close_()
{
document.getElementById('open_').innerHTML='';
}


function FlashCode(width_,height_,where_,what_,transparent_,id_,loop_,bg_)
	{
		
		var szeles=screen.width;
		var newleft=(((szeles-500)/2)-12);
		document.getElementById('open_').style.left=newleft+'px';
		var fls='<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0" width="'+width_+'" height="'+height_+'" id="'+id_+'" align="middle"> \n'+
											      '<param name="movie" value="'+what_+'" /><param name="quality" value="high" /><param name="wmode" value="'+transparent_+'" /><param name="bgcolor" value="#'+bg_+'" /><param name="loop" value="'+loop_+'" /><param name="menu" value="false" /> \n'+
                                                  '<embed src="'+what_+'" quality="high" loop="'+loop_+'" wmode="'+transparent_+'" menu="false" bgcolor="#'+bg_+'" width="'+width_+'" height="'+height_+'" name="'+id_+'" align="middle" allowScriptAccess="sameDomain" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" /> \n'+
                                                  '</object>';
		document.getElementById(where_).innerHTML=fls;

	}
