
function popitup(url,width,height)
{
	newwindow=window.open(url,"name","height=" + height + ",width=" + width + ",scrollbars=no,resizable=yes,status=yes");
	if (window.focus) {newwindow.focus()}
	return false;
}
