/* ibotajax :: container (div id), [name_of_script].php, [name_of_img].gif */ 
function ibotclick(pos_id, ad_id, page, script) {
	new Ajax.Request(script,
	{ 
		method:'post', 
		postBody:'pos_id='+pos_id+'&ad_id='+ad_id+'&page='+page
	});
}

/* delete function */ 
function ibotdelete(url) {
	var answer = confirm("Are you sure you want to delete this item?")
	if (answer){
		window.location = url;
	}
}


