function fecharpopup(id){
	$("#"+id).fadeOut("normal");
	$('#block2').hide();
}

/*#####################################################################################
#####################################################################################*/

function fx_popup(id,width,height,top,left,titulo,pagina,back){
			
		$("#"+back).html('<div class="popup" id="'+id+'" onclick="dragdrop(\''+id+'\',\''+id+'\');"><div class="topopopup"><div class="canto1"></div><div class="canto2"></div><a onclick="fecharpopup(\''+id+'\'); return false;" href="fechar esta janela"><img src="imagens/transparente.gif" width="16" height="16" border="0" alt="" class="closepopup"/></a></div><div id="bgtopo'+id+'" class="bgtopo"><div class="titulo"><span>'+titulo+'</span></div></div><div id="frame'+id+'" class="frame"><iframe src="'+pagina+'" id="idframe'+id+'" name="nomeframe'+id+'" scrolling="no" frameborder="0" marginwidth="0" marginheight="0" width="100%" height="100%"></iframe></div><div id="cantoL'+id+'" class="canto_L"></div><div id="cantoR'+id+'" class="canto_R"></div><div class="bottompopup"><div class="canto1"></div><div class="canto2"></div></div></div>');
	
		$("#"+id).css('position', 'absolute').css('width',width).css('height',height).css('top',top).css('left',left);
		$(".titulo span").css('width',width);
		
		widthframe  = width + 22;
		heightframe = height - 32;
		
		$("#frame"+id).css('width',widthframe).css('height',heightframe);
		$("#bgtopo"+id).css('width',widthframe);
		
		$("#cantoR"+id).css('height',heightframe);
		$("#cantoL"+id).css('height',heightframe);
		
		$("#"+id).fadeIn("normal");
				
		$('#block2').show();

}
