$(function(){
		$("body").append("<div id=\"dialog_popUpFrame\" title=\"Report\"></div>");
		
		$(".popUpFrame").each(function(index) {
			
			 var href = $(this).attr("href");
			 $(this).attr("href","#");
			 $(this).click(function() {
			 	$("#dialog_popUpFrame").empty().append("<iframe frameborder=\"0\" src=\"" + href + "\" width=\"700px\" height=\"550px\"><p>Your browser does not support iframes.</p></iframe>");
			 	$("#dialog_popUpFrame").dialog({width:750,height:550});	
			 });
  		});
});
