function showInfo(param1){
var desc  = document.getElementById("desc");
var hinfo = document.getElementById("hinfo");
var nfacts  = document.getElementById("nfacts");
var others  = document.getElementById("others");
	if(param1==1){
		desc.style['display']='';
		hinfo.style['display']='none';
		nfacts.style['display']='none';
		others.style['display']='none';
		
		document.IPFrm.descimg.src='images/description1.jpg';
		document.IPFrm.hinfoimg.src='images/healthinfo.jpg';		
		document.IPFrm.nfactsimg.src='images/nutrionfacts.jpg';
		document.IPFrm.othersimg.src='images/others.jpg';	
	}else if(param1==2){
		desc.style['display']='none';
		hinfo.style['display']='';
		nfacts.style['display']='none';
		others.style['display']='none';
		
		document.IPFrm.descimg.src='images/description.jpg';
		document.IPFrm.hinfoimg.src='images/healthinfo1.jpg';		
		document.IPFrm.nfactsimg.src='images/nutrionfacts.jpg';
		document.IPFrm.othersimg.src='images/others.jpg';	
	}else if(param1==3){
		desc.style['display']='none';
		hinfo.style['display']='none';
		nfacts.style['display']='';
		others.style['display']='none';
		
		document.IPFrm.descimg.src='images/description.jpg';
		document.IPFrm.hinfoimg.src='images/healthinfo.jpg';		
		document.IPFrm.nfactsimg.src='images/nutrionfacts1.jpg';
		document.IPFrm.othersimg.src='images/others.jpg';		
	}else if(param1==4){
		desc.style['display']='none';
		hinfo.style['display']='none';
		nfacts.style['display']='none';
		others.style['display']='';
		
		document.IPFrm.descimg.src='images/description.jpg';
		document.IPFrm.hinfoimg.src='images/healthinfo.jpg';		
		document.IPFrm.nfactsimg.src='images/nutrionfacts.jpg';
		document.IPFrm.othersimg.src='images/others1.jpg';	
	}// if condition closing tag
}// function closing tag
