function centeredWindowNamed(url, windowName, popW, popH, featureList, returnWindowHandle) {

	if(!featureList)
	{
		featureList = "toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=1";
	}
	var w = 800, h = 600;
		
	try {
		if(screen.availWidth) {
  			w = screen.availWidth;
  			h = screen.availHeight;
		}
	}
	catch(e) {}

	var leftPos = (w-popW)/2;
	var topPos = (h-popH)/2;
	
	var link = window.open(url, windowName, featureList + ",width=" + popW + ",height=" + popH + ",top=" + topPos + ",left=" + leftPos);
	try {
		link.focus();
	}
	catch(e) {}
	
	if(returnWindowHandle)
	{
		return link;
	}
}
