/*
* refresh load an external Page like page include
* params:	url		- page to load,
*        	id		- dom element to load content to
*			action	- function to invoke in success case
*/      
function loadAjaxTpl(tplurl, domident, successAction){
	$JQ.ajax({
		url:     tplurl,
		cache:   false,
		async:   false,
		success: function( html ){
			$JQ( eval( "\"#" + domident + "\"" ) ).html( html );
          		// bind 'myForm' and provide a simple callback function
          		eval(successAction);
		},
		beforeSend: function( request ){
		},
		afterSend: function( request ){
		}
	});   
}
