 var oAjax = new Ajax();
 function getcontent(page,lang) 
 {
 	var content = function(ContentResponse) 
 	{	
 		
 		
 		what_ever_content_arr = ContentResponse.split("##ContentSeperator##");
 		
 		 title = what_ever_content_arr[1];
 		 text = what_ever_content_arr[2];
 		
 		document.getElementById("content").innerHTML =text  ;

 		document.getElementById("current_page_title_3rd").innerHTML =title ;
 		
    } // end 
	oAjax.doGet('sub_3rd_req.php?lang='+lang+'&data=' + page ,content, 'text');

	

 } // end function 
 
 function getpos(city,category,lang) 
 {
 	var content = function(ContentResponse) 
 	{	
 		
 		
 		pos_res_arr = ContentResponse.split("##ContentSeperator##");
 		
 		text = pos_res_arr[1];
 		
 		document.getElementById("pos_view").innerHTML =text  ;

 		
    } // end 
	oAjax.doGet('point_of_sale_req.php?lang='+lang+'&city=' + city+'&category=' + category,content, 'text');

	

 } // end function