
function BkOffersGet(language_iso, targetdiv, Geoplace_id) {
        	getfile_url ='index.php?jt=out&mode=visitor&application_id=62&action_id=553&language_iso='+ language_iso+'&Geoplace_id=' + Geoplace_id + '&targetdiv='+ targetdiv + '&fin'
        	//alert(getfile_url);
        	//alert(getfile_url);
        	ajax_do (getfile_url) ;
}

function BkImagesGet(Offer_id) {
        	getfile_url ='index.php?jt=out&mode=visitor&application_id=62&action_id=555&op=UpdateImages&Offer_id=' + Offer_id + '&fin'
        	//alert(getfile_url);
        	//alert(getfile_url);
        	ajax_do (getfile_url) ;
}

function ajax_do (url) {
	
	// Create new JS element
	var jsel = document.createElement('SCRIPT');
	jsel.type = 'text/javascript';
	jsel.src = url;
	// Append JS element (therefore executing the 'AJAX' call)
	document.body.appendChild (jsel);
	return true;
}
