// JavaScript Document

// select product

	function SelectComboByText(text,cId)
	{
		var i=0;
		var combo = document.getElementById(cId);
		for(i=0;combo.options.length;i++)
		{
			if(combo.options[i].text==text)
			{
				 combo.selectedIndex = i;
			return;
			}
		}
	}
	function SelectComboByValue(value,cId)
	{
		var i=0;
		var combo = document.getElementById(cId);
		for(i=0;combo.options.length;i++)
		{
			if(combo.options[i].value==value)
			{
				 combo.selectedIndex = i;
			return;
			}
		}
	}
function showProduct(){

	 if (document.getElementById("selProduct").value==0)
     window.location.href='247-weight-loss-anti-aging-weight-loss-calorie-control-fat-blocker.html';
	 
	 if (document.getElementById("selProduct").value==1)
     window.location.href='aminosculpt-liquid-collagen.html';
	 
	 if (document.getElementById("selProduct").value==2)
     window.location.href='marine-joint-support-muscle-relief-anti-inflammatory-supplement.html';
     
	 if (document.getElementById("selProduct").value==3)
     window.location.href='liquid-glucosamine-chondroitin-msm-supplement-with-collagen.html';
	 
	 if (document.getElementById("selProduct").value==4)
     window.location.href='livefree-digestive-health-supplement-with-prebiotics-prune-juice-antioxidants-electrolytes-and-fiber.html';
	 
	 if (document.getElementById("selProduct").value==5)
     window.location.href='msm-supplement.html';
	 
	  if (document.getElementById("selProduct").value==6)
     window.location.href='liquid-multi-vitamin-and-mineral-supplement.html';
	 
	  if (document.getElementById("selProduct").value==7)
     window.location.href='omega3-fish-oil-supplement-astaxanthin.html';
	 
	  if (document.getElementById("selProduct").value==8)
     window.location.href='collagen-rejuvenating-anti-wrinkle-treatment-cream.html';
	 
	  if (document.getElementById("selProduct").value==9)
     window.location.href='collagen-rejuvenating-anti-oxidant-facial-moisturizer.html';
	 
	  if (document.getElementById("selProduct").value==10)
     window.location.href='collagen-rejuvenating-facial-cleanser.html';
	 
 	  if (document.getElementById("selProduct").value==11)
     window.location.href='antiaging-body-lotion.html';
	 
	  if (document.getElementById("selProduct").value==12)
	  window.location.href='liquid-soluble-dietary-fiber-supplement.html'; 	
	  
	  if (document.getElementById("selProduct").value==13)
	  window.location.href='liquid-fiber-with-prune-juice-electrolytes-and-antioxidants.html'; 	
	  
	  if (document.getElementById("selProduct").value==14)
	  window.location.href='healthy-weight-loss-program.html'; 	
	  
	  if (document.getElementById("selProduct").value==15)
	  window.location.href='natural-colon-cleansing-product.html'; 	
}	
// ------------

