/*
Gaby's Farm Javascript include file
*/

// This javascript controls the popup window for the nutrition display
var popUpNutritionWin=0;
function popUpNutritionWindow(URLStr, left, top, width, height)
{
  if(popUpNutritionWin)
  {
    if(!popUpNutritionWin.closed) popUpNutritionWin.close();
  }
  popUpNutritionWin = open(URLStr, 'popUpNutritionWin', 'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,copyhistory=yes,width='+width+',height='+height+',left='+left+', top='+top+',screenX='+left+',screenY='+top+'');
}
