var last_left = 50;
function popup_window(path,name,height)
{
	window.open(path,name,'width=200,height='+height+',left='+last_left+',top=50,toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,copyhistory=no,resizable=no');
	last_left = last_left + 206;
}