function ajax(divID,url){ 

	new Ajax(url, {
		method: 'get',
		update: divID,
        evalScripts: true
	}).request();
	
}

