var GetStaticHtml=function(id,filename,objhtml){
		if(!objhtml)return ;
        new AjaxReq({
            url: '/statichtml_'+id+(filename?('_'+filename):'')+'.aspx',
            method: 'GET',
			callType: "html",
           data: {header:'false',footer:'false'},
            onSuccess: function(data){objhtml.set('html',this.ajax.response.html)}
        }).send();     		
}