function newNamedWindow(url,name,width,height)
{
	var newWindow;
	newWindow = window.open(url,name,"toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,width=" + width + ",height=" + height + ",screenX=40,screenY=40");
	newWindow.focus();
}

function newNamedFunctionalWindow(url,name,width,height)
{
	var newWindow;
	newWindow = window.open(url,name,"toolbar=yes,location=yes,directories=yes,status=yes,menubar=yes,scrollbars=yes,resizable=yes,width=" + width + ",height=" + height + ",screenX=40,screenY=40");
	newWindow.focus();
}