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

function 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="http://flytec.com.py/js/popup/imagens_popup/transparente.gif" width="16" height="16" border="0" alt="0" class="closepopup"/></a></div><div id="bgtopo'+id+'" class="bgtopo"><div class="titulo">'+titulo+'</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);
		
		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");
		
		dragdrop(id,id);
		
		$('#block2').show();
	
	
}
