function validate_InitialInvestment_onclick()
{
x = document.formc.pA1B.value;
x = x.replace(/[^0-9.-]/g, '');
if (x<=0){
alert("Initial Investment Amount must be a number greater than zero")
	document.formc.pA4B.value="";
	document.formc.pA5B.value="";
	document.formc.pA6B.value="";
	document.formc.pA7B.value="";
	document.formc.pA8B.value="";
	document.formc.pA9B.value="";
}
}
