function openMail() {
	winNew=window.open('mail.php','newWindow','width=450,height=600,scrollbars=no')
}
function slideOut(div, curHeight, maxHeight, px) {
	var speed = 0;
	if (parseInt(curHeight) < parseInt(maxHeight)) {
		curHeight += px;
		div.style.height = curHeight+'px';
		setTimeout(function() { slideOut(div, curHeight, maxHeight, px); }, speed);
	} else 	{
		div.style.height = maxHeight+'px';
	}
}