// johnny cison
// www.toomuchstupid.com
// if you're swiping the code, please leave my name in it.

var map_expand=0;

function map_toggle()
{
	if (map_expand)
	{
		cptr=document.getElementById('d_portal_ctrl');
		cptr.className='e';
		cptr.innerHTML='Expand';
		document.getElementById('d_portal').className='s';
		map_expand=0;
	}
	else
	{
		cptr=document.getElementById('d_portal_ctrl');
		cptr.className='c';
		cptr.innerHTML='Collapse';
		document.getElementById('d_portal').className='l';
		map_expand=1;
	}

	fptr=document.getElementById('f_map').contentWindow;
	fptr.win_resize();
	if (document.f_join['map_x'].value.length && document.f_join['map_y'].value.length) { fptr.map_locate(document.f_join['map_x'].value, document.f_join['map_y'].value); }
}

