function writeToWindow(content) {
 top.consoleRef=window.open('','myconsole',
  'width=350,height=250'
   +',menubar=0'
   +',toolbar=1'
   +',status=0'
   +',scrollbars=1'
   +',resizable=1');
 top.consoleRef.document.writeln(
  '<html><head> '+
  '<title></title> '+
  '<LINK REL=StyleSheet HREF="Nutrafiles.css" TYPE="text/css" MEDIA=screen>'+
  ' </head>'+
   +'<body bgcolor=white onLoad="self.focus()">'
   +content
   +'</body></html>'
 );
 top.consoleRef.document.close();
}


function printIngredient(content) {
 top.consoleRef=window.open('','myconsole',
  'width=350,height=250'
   +',menubar=0'
   +',toolbar=1'
   +',status=0'
   +',scrollbars=1'
   +',resizable=1');
 top.consoleRef.document.writeln(
  '<html><head> '+
  '<title></title> '+
  '<LINK REL=StyleSheet HREF="/Nutrafiles.css" TYPE="text/css" MEDIA=screen>'+
  '<LINK REL=StyleSheet HREF="/Nutrafiles.css" TYPE="text/css" MEDIA=print>'+
  ' </head>'+
  '<body onLoad="window.print()">' +
  content +
  '</body></html>'
 );
 top.consoleRef.document.close();
}



