function arGlobalHandleError() 
{
	return true;
}
function showHelpNode(iNodeID)
{
	var w = 700;
	var h = 460;
	var l = (screen.availWidth - w)/2;
	var t = (screen.availHeight - h)/2;
	var features="height=" + h + ",width=" + w + ",left=" + l + ",top=" + t + ",location=no,scrollbars=yes,resizable=yes,status=no,menubar=no,toolbar=no";
	var ret = window.open("http://allrecipes.com/faq/" + iNodeID + ".asp?pop=1", "_help", features, false);
}
function smallWindow(sURL, nHeight, nWidth)
{
	var l = (screen.availWidth - nWidth)/2;
	var t = (screen.availHeight - nHeight)/2;
	var features="height=" + nHeight + ",width=" + nWidth + ",left=" + l + ",top=" + t + ",location=no,scrollbars=yes,resizable=yes,status=no,menubar=no,toolbar=no";
	var ret = window.open(sURL, "_new", features, false);
}

