function popMaillistForm(adr)
{
	var x = screen.width / 2 - 550 / 2;
	var y = (screen.height - 100) / 2 - 522 / 2;
	
	var height = 522;
	
	if(navigator.userAgent.toLowerCase().indexOf("msie") != -1)
	{
		height = 552;
	}
	
	window.open(adr, 'maillist', 'width=550, height='+height+', left='+x+', top='+y+', toolbar=0, scrollbars=0, location=0, statusbar=0, menubar=0, resizable=1');
}

function setWindowHeight(height)
{
	if(document.all)
	{
		//window.innerHeight = height;
		//document.body.clientHeight = height;
		window.resizeTo(550, height);
	}
	else
	{
		window.innerHeight = height;
	}
}
