Just a bit of syntax problem:
var Result= return Result;
take out this line, its nonsense. You've already declared the result variable, and anyway you can't use the return keyword on the RHS of an assignment.
alert(Result);
take out this line too. the variable Result only exists inside the body of the function, so it doesn't exist when you're trying to alert it. If you want to see the return value use <input type="button" value="Check Details"
Name=butCheckForm onclick="alert(butCheckForm_onclick());">
SuS=parseInt(SUS);
js is case-sensitive so you need to change this to
SUS=parseInt(SUS);
hth
Phil