function getPage(pageindex,tag){
	tt=tag.split("||");
	$.ajax({
    url: tt[2]+'?pageindex='+pageindex+'&z_id='+tt[0]+'&divid='+tt[1]+'&geturl='+tt[2],
    type: 'GET',
    dataType: 'html',
    timeout:15000,
    error: function(){
        alert('Error loading XML document');
    },
    success: function(html){
	 		document.getElementById(tt[1]).innerHTML=html;
    }});
}


