
function PrintPage(contextPath){

	var pageText = document.getElementById('print').innerHTML;
	
	var page = pageText.split('~#~!@^')
	
	var printText = '';
	if(page.length == 3){
		printText = page[0] + '</label></td></tr></table>' + page[2];
	}else if(page.length == 7){
		printText = page[0] + '""><label>' + page[2] + '""><span>' + page[4]+ '</label></td></tr></table>' + page[6];
	}
	 
    popup = window.open(contextPath + '/jsp/print.jsp', 'printWin', 'maximize=95%,toolbar=no,menubar=no,location=no,scrollbars=yes,screenX=30,screenY=200,top=40,left=15,height=600,width=980,resizable=no');
    popup.document.open();
    popup.document.write('<html>');
    popup.document.write('<head>');    
    popup.document.write('<link href="'+ contextPath +'/style/application.css" rel="stylesheet" type="text/css" />');
    popup.document.write('<link href="'+ contextPath +'/theme/print.css" rel="stylesheet" type="text/css" media="print"/>');
    popup.document.write('</head>')
    popup.document.write('<body onload="document.getElementById(\'noPrint\').style.visibility=\'hidden\'; document.getElementById(\'noPrint1\').style.visibility=\'hidden\';">');
    popup.document.write('<div class="hide"><center><a href="javascript:window.print();"><span style="font-weight: bold; color: #ffffff; font-family: Verdana, Arial, Helvetica, sans-serif; text-decoration: underline;">'+'Print This Page'+'</span></a></center></div><hr>')
    popup.document.write(printText);
    popup.document.write('</body>');                                                        
    popup.document.close(); 

}
function printNutritionFacts(contextPath){
	
	document.getElementById('errorMsg').innerHTML = '';
	
	var pageText = document.getElementById('print').innerHTML;
	
	var page = pageText.split('~#~!@^')

	var printText = page[0]+'""></table>';

	printText += page[2]+'""></table>'
	printText += page[4]+'""></table>'
	printText += page[6]
	
	var catMsgObj = printText.split('^#~!@~'); 
	
	var catText = catMsgObj[0] + '"">'
	catText += catMsgObj[2] + '""</div>'
	
	printText = catText;
	
	// to stop clickable links on item
	var newPrintText = '' 
	if (navigator.userAgent.indexOf("Firefox")!=-1){
		newPrintText = printText.replace(/nutTabTextLink/g,'nutTabTextLink" onclick="return false" ') 
	}else{
		newPrintText = printText.replace(/nutTabTextLink/g,'nutTabTextLink onclick="return false" ') 
	}
	
   popup = window.open(contextPath + '/jsp/print.jsp', 'printWin', 'maximize=95%,toolbar=no,menubar=no,location=no,scrollbars=yes,screenX=30,screenY=200,top=40,left=15,height=600,width=980,resizable=no');
   popup.document.open();
   popup.document.write('<html>');
   popup.document.write('<head>');   
   popup.document.write('<link href="'+ contextPath + '/style/application.css" rel="stylesheet" type="text/css" />');
   popup.document.write('<link href="'+ contextPath +'/theme/print.css" rel="stylesheet" type="text/css" media="print"/>');
   popup.document.write('</head>')  
   popup.document.write('<body>'); 
   popup.document.write('<div class="hide"><center><a href="javascript:window.print();"><span style="font-weight: bold; color: #ffffff; font-family: Verdana, Arial, Helvetica, sans-serif; text-decoration: underline;">'+'Print This Page'+'</span></a></center></div><hr>')
   popup.document.write(newPrintText);
   popup.document.write('</body>');                                                        
   popup.document.close(); 
 
}

 
function printNutritionComparison(contextPath){
	
	document.getElementById('itemErrorMsg').innerHTML = '';
	
	var pageText = document.getElementById('print').innerHTML;
	
	var page = pageText.split('~#~!@^')

	var printText = page[0]+'""></table>';

	printText += page[2]+'""></table>'

	printText += page[4]
	
	var catMsgObj = printText.split('^#~!@~'); 
	
	var catText = catMsgObj[0] + '"">'
	catText += catMsgObj[2] + '""</div>'
	
	printText = catText;
		
    popup = window.open(contextPath + '/jsp/print.jsp', 'printWin', 'maximize=95%,toolbar=no,menubar=no,location=no,scrollbars=yes,screenX=30,screenY=200,top=40,left=15,height=600,width=980,resizable=no');
    popup.document.open();
    popup.document.write('<html>');
    popup.document.write('<head>');
    popup.document.write('<link href="'+ contextPath +'/style/application.css" rel="stylesheet" type="text/css" />');
    popup.document.write('<link href="'+ contextPath +'/theme/print.css" rel="stylesheet" type="text/css" media="print"/>');
    popup.document.write('</head>') 
    popup.document.write('<body>');
    popup.document.write('<div class="hide"><center><a href="javascript:window.print();"><span style="font-weight: bold; color: #ffffff; font-family: Verdana, Arial, Helvetica, sans-serif; text-decoration: underline;">'+'Print This Page'+'</span></a></center></div><hr>')
    popup.document.write(printText);
    popup.document.write('</body>');                                                        
    popup.document.close();
}
