﻿	function loadByAjax(targetPanelId, srcURL){
		
		$panel = $('#'+targetPanelId);
		$.ajax({  
			url: srcURL, 
			beforeSend: function(){
				//alert("before send");
			},
			complete: function(){
				//alert("complete");
			},
			success: function (obj) {  
				
				$panel.html(obj.replace("__VIEWSTATE", "dummyVS").replace("__VIEWSTATE", "dummyVS"));

			}
		});
	}


