function ajaxCall(file, backdiv)
{

	file = Url.encode(file);
	new Ajax.Request( file ,
	{
		method: 'get',
		evalScripts: true,
		onComplete: function(transport)
		{
			$(backdiv).innerHTML = transport.responseText;
		}
	}
	)
	return false;
}
