move_the_divs = "no";

function set_moving_divs()
{
	move_the_divs = "yes";
}

function move_divs(e)
{
	if(move_the_divs == "yes")
	{
		var mouse_pos_y = (e) ? e.clientY : event.clientY;
		
		if(mouse_pos_y > 132)
		{
			document.getElementById('top_div').style.height = mouse_pos_y - 132;
			window.status = (document.getElementById('top_div').offsetHeight);
			if(400 > document.getElementById('top_div').offsetHeight)
			{
				document.getElementById('bottom_div').style.height = 300 + (400 - document.getElementById('top_div').offsetHeight);
			}
		}
	}
}

function stop_divs()
{
	move_the_divs = "no";	
}

