function miafunc(id)
{
 $('#iframeloader'+id).hide();
 $('#iframeframe'+id).slideDown("slow");	
 	
	
}

$(function() {
	$("a[makeDyn]").click(function(e) {
	 	
	 // alert($(this).attr('makeDyn'));	
	  
	  id = $(this).attr('tar');
	  
	  $("#iframecontainer"+id).html('<div id="iframeloader'+id+'" style="width:100%;text-align:center;z-index:100"><img src="'+Gpath+'images/loader.gif" /></div><iframe id="iframeframe'+id+'" src="'+Gpath+'gantt.php?serial='+$(this).attr('makeDyn')+'" width="100%" height="360" style="border:1px solid #000000;z-index:0;display:none"  frameborder="0" >Your browser doesn\'t support iframes.</iframe>');
	  
	  
	  
	  return false;
		
	})	
	
	});

