// JavaScript Document
function openNewWindow(content, name, width, height)
{
	msgWindow=window.open(content,name,"width=" + width + ",height=" + height + ",resizable=yes,menubar=no,toolbar=no,directories=no,location=no,scrollbars=yes,status=no,dependent=yes");
}

