
function popWin(num){
	var OpenWindow=window.open("", "newwin", "height=600,width=550,scrollbars=yes");
	OpenWindow.moveTo(Math.round((screen.width-550)/2),Math.round((screen.height-600)/2));
	OpenWindow.document.write("<html><head><link href='includes/css/import.css' type='text/css' rel='stylesheet' media='screen' /></head><body>");
	
	if (num == 1) {
	OpenWindow.document.write("<div style='background-color: #FFFFFF; width: 100%; margin: -20px auto; padding: 15px;' align='center'><table cellspacing='2' cellpadding='5' class='descriptionTable' width='100%'><tr><td class='td1'><div align='center'><strong>AVERAGE BODY WEIGHT</strong></div></td></tr><tr><td><div align='center'><img src='images/chart3.jpg' /></div></td></tr><tr><td class='td2'><div><p>At the end of a 21-week growing period, daily dietary supplementation of calves with VitaPak-Grow had an average 29.1 lb. increase over controls.</p></div></td></tr></table></div>");
	}
	if (num == 2) {
	OpenWindow.document.write("<div style='background-color: #FFFFFF; width: 100%; margin: -20px auto; padding: 15px;' align='center'><table cellspacing='2' cellpadding='5' class='descriptionTable' width='100%'><tr><td class='td1'><div align='center'><strong>AVERAGE WEIGHT INCREASE</strong></div></td></tr><tr><td><div align='center'><img src='images/chart2.jpg' /></div></td></tr><tr><td class='td2'><div align='center'>Calves receiving VitaPak-Grow had an average weight gain advantage of<br />31.9 lbs. per calf.</div></td></tr></table></div>");
	}
	if (num == 3) {
	OpenWindow.document.write("<div style='background-color: #FFFFFF; width: 100%; margin: -20px auto; padding: 15px;' align='center'><table cellspacing='2' cellpadding='5' class='descriptionTable' width='100%'><tr><td class='td1'><div align='center'><strong>MED COST SAVINGS OVER CONTROLS</strong></div></td></tr><tr><td><div align='center'><img src='images/chart1.jpg' /></div></td></tr><tr><td class='td2'><div align='center'>TREATMENT CALVES RECEIVED VITAPAK-GROW DAILY</div></td></tr><tr><td class='td2'>Each of these groups was divided into treatment and control. A comparison of the medication costs was maintained. The above graph indicates the dollar savings in medication costs for the treatment side versus the control side.</td></tr></table></div>");
	}
	
	OpenWindow.document.write("<br /><br /><a href='' onClick='self.close()'>Close</a><br /></body></html>");
}