function my_include(id, file) {
	document.open();
	document.write('<div id="' + id + '"></div>');
	document.close();

	var options = {};
	options.method = "get";
	options.asynchronous = false;

	var sURL = file + "?cache="+(new Date()).getTime();

	new Ajax.Updater(id, sURL, options);
}

