	<!--
	function setPrice(obj)
	{
	var cr=document.getElementById("curen").value
	var s1=getconfigprice(cr)
var s2=getoptionprice()
//alert(s1+"\n*******\n"+s2)
s1=parseFloat(s1,10)+parseFloat(s2,10)
if(s1.toString().indexOf(".")==-1)
s1=s1+".00"
document.getElementById("totalPrice").innerHTML=cr+s1
}
	

function getconfigprice(cr)
{

var clsum=""
var cltext=document.fr.prodconfig[document.fr.prodconfig.selectedIndex].text
if(cltext!="")
{
clsum=cltext.substring(cltext.indexOf(cr)+1)

}
return(clsum)
}
function getoptionprice()
{

var flagGroup=0
var optionsumm=0
var tempsum=0
try
{
flagGroup=parseInt(document.fr.proption.length,10)	
	
}
catch (er)
{
}

if(flagGroup>0)
{
for(i=0;i<flagGroup;i++)
{
if(document.fr.proption[i].checked)
{
//tempsum=eval("document.getElementById('pricediv"&document.fr.proption[i].value&"').outerText")
//tempsum=eval("document.all('pricediv"&document.fr.proption[i].value&"').outerHTML")
tempsum=document.fr.proption[i].value
tempsum=tempsum.substring(tempsum.indexOf("$")+1)
tempsum=parseFloat(tempsum,10)
optionsumm=optionsumm+tempsum


}
}
}
else
{

if(document.fr.proption.checked)
{
tempsum=document.fr.proption.value//eval("document.fr.pricediv"&document.fr.proption.value&".value")
//alert(tempsum)
tempsum=tempsum.substring(tempsum.indexOf("$")+1)
tempsum=parseFloat(tempsum,10)
//alert(document.fr.proption.value+"\nmmm")
optionsumm=optionsumm+tempsum
}
}

return(optionsumm)



}

	//-->
