/**
+--------------------------------------------------------------------------
| SE23-Ajax Toggle Visibility 1.0
+--------------------------------------------------------------------------
| External JavaScript File (*.js)
+--------------------------------------------------------------------------
| Author: Sean Ellis
| Website: http://www.invisionmodding.com/
| Copyright: 2008 Invision Modding
+--------------------------------------------------------------------------
**/

function seTogVis()
{
	if( ! use_enhanced_js )
	{
		return false;
	}
	
	do_request_function = function()
	{
		if( ! xmlobj.readystate_ready_and_ok() )
		{
			xmlobj.show_loading();
			return;
		}
		
		xmlobj.hide_loading();
		
		var result = xmlobj.xmlhandler.responseText;
		
		if( result != 'error' )
		{
			document.getElementById( 'se_togvis_link' ).title = result;
		}
	}
	
	xmlobj = new ajax_request();
	
	xmlobj.onreadystatechange( do_request_function );
	xmlobj.process( ipb_var_base_url + 'act=xmlout&do=se_togvis&md5check='+ipb_md5_check );
	
	return false;
}