// JavaScript Document

function FUnblock(strName, nWidth, nHeight){
 
 var strFlash = '<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,29,0" width="'+nWidth+'" height="'+nHeight+'" id="'+strName+'">';
 strFlash += '<param name="allowScriptAccess" value="sameDomain" />';
 strFlash += '<param name="movie" value="'+strName+'.swf"  />';
 strFlash += "<param name='wmode' value='transparent'>"
 strFlash += '<embed src="'+strName+'.swf" width="'+nWidth+'" height="'+nHeight+'" name='+strName+'" allowScriptAccess="sameDomain" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" />';
 strFlash += '</object>';
 
 document.write(strFlash); 
 
}


function func_excluir(strCaminho){
	if(confirm("Excluir este registro?")==true){
		window.location=strCaminho;
	}
}

function openBr(img){
	window.open("popDetalhe.aspx?img="+img+"","janela","");
}



