var totalCost=0;
var tempCost=0;
var webclick=0;
function calcAmt(amt){
webclick=1;
if(amt==0){
	document.frmCalc.cost.value="0";
	clearform();
	return false;
}
	document.frmCalc.cost.value="";
	totalCost=amt;
	showprice();
}

function showprice()
{

 document.frmCalc.cost.value=(totalCost*10/10)+(tempCost*10/10);
}

function addPrice(value)
{
 if(webclick==0||document.frmCalc.cost.value=="0")
 {
 alert("Please select WebSite!!");
 clearform();
 return false;
 }
 tempCost=0;
 for(i=0;i<document.frmCalc.op.length;i++){
	if(document.frmCalc.op[i].checked==true)
	{
	 tempCost=tempCost*10/10;
	 tempCost+=document.frmCalc.op[i].value*10/10;
	}
	}
showprice();
 }


 function clearform()
 {
  totalCost=0;
  tempCost=0;
  webclick=0;
  for(i=0;i<document.frmCalc.op.length;i++)
  {
   document.frmCalc.op[i].checked=false;
  }
  document.frmCalc.cost.value="0";
  document.frmCalc.websize.selectedIndex=0;
 }