/***********************************
**      File: ajax.js             **
**  Modified: 2010-06-16          **
**   Version: 1.0                 **
** Copyright: 1TOPF entertainment **
**    E-Mail: support@1topf.com   **
***********************************/

function sendRequest(element, option, method)
{
	new Ajax.Updater(element,option,
	{
		method: method
	});
}
