//popup funtion to open adwebsites
function popup(pageurl){
	window.open(pageurl,"home");
}
function chng(obj,img )
{
	obj.src=img;
}
//Home page - Price index graph
function priceIndex(){
		var contextPath=document.home.path.value;
		var comboValue;
		var rad_val;
		
		var selIndex = document.home.category.selectedIndex;
		comboValue = document.home.category.options[selIndex].value;
		for (var i=0; i < document.home.price.length; i++){
		   if (document.home.price[i].checked)
			  {
			 			  rad_val = document.home.price[i].value;
			  }
		}
		document.home.price[1].disabled=false;
	    //document.home.price[2].disabled=false;
		
		if (comboValue=="SMS" && rad_val=="USA"){
				document.home.priceindex.setAttribute("src", "/images/site_non_wovens/priceindices/NA_SMS.gif");
		} 
		else if(comboValue=="SMS" && rad_val=="EUROPE"){
				document.home.priceindex.setAttribute("src", "/images/site_non_wovens/priceindices/Euro_SMS.gif");
		}
		else if(comboValue=="Spunlace" && rad_val=="USA"){
				document.home.priceindex.setAttribute("src","/images/site_non_wovens/priceindices/NA_Spunlace.gif");
		}
		else if(comboValue=="Spunlace" && rad_val=="EUROPE"){
				document.home.priceindex.setAttribute("src", "/images/site_non_wovens/priceindices/Euro_Spunlace.gif");
		}
		else if(comboValue=="Spunbond" && rad_val=="USA"){
				document.home.priceindex.setAttribute("src", "/images/site_non_wovens/priceindices/NA_Spunbond.gif");
		}
		else if(comboValue=="Spunbond" && rad_val=="EUROPE"){
				document.home.priceindex.setAttribute("src", "/images/site_non_wovens/priceindices/Euro_Spunbond.gif");
		}
		else if(comboValue=="Airlaid" && rad_val=="USA"){
				document.home.priceindex.setAttribute("src", "/images/site_non_wovens/priceindices/NA_Airlaid.gif");
		}
		else if(comboValue=="Airlaid" && rad_val=="EUROPE"){
				document.home.priceindex.setAttribute("src", "/images/site_non_wovens/priceindices/Euro_Airlaid.gif");
		}
		else if(comboValue=="Fluff" && rad_val=="USA"){
				document.home.priceindex.setAttribute("src", "/images/site_non_wovens/priceindices/NA_Fluff.gif");
		}
		else if(comboValue=="Fluff" && rad_val=="EUROPE"){
				document.home.priceindex.setAttribute("src", "/images/site_non_wovens/priceindices/Euro_Fluff.gif");
		}
	}
