//------------------------------------------
// Invision Community Blog v1.2
// Blog JS File
// (c) 2005 Invision Power Services, Inc.
//
// http://www.invisionblog.com
//------------------------------------------

/*-------------------------------------------------------------------------*/
// Pop up Settings window
/*-------------------------------------------------------------------------*/

function blogsettings_pop()
{
	var not_loaded_yet = 0;

	if ( use_enhanced_js )
	{
		try
		{
			xml_myblogsettings_init();
			not_loaded_yet = 1;
		}
		catch( e )
		{
			not_loaded_yet = 0;
		}
	}

	if ( ! not_loaded_yet )
	{
		ipb_var_base_url = ipb_var_base_url.replace( '&amp;', '&' );
		window.location = ipb_var_base_url + 'automodule=blog&req=ucp_main';
	}
}