

// form send 
function send( obj , url )
{
	if( obj )
	{
		if(url)
		{
			obj.action = url;
		}
		obj.submit();
	}
}
