// Ajax check
ajax_check = {}
ajax_check.is_object = function(tag)
{
	if (typeof(tag) == 'object')
	{
		return true
	}
	return false
}
	
ajax_check.check = function()
{	
	if (!ajax_check.is_object(window.Ajax))
	{
		return false
	}
	else if (Ajax.getTransport())
	{
		return true
	}
	else
	{
		return false
	}
}