function checkform(form) {
temp = form.mobile.value
if (temp.length == 0){
alert("Please enter mobile number.")
form.mobile.focus();
return false;
}
else if (temp.length < 8){
alert("StarHub mobile numbers are 8 digits in length. Please try again.")
form.mobile.focus();
return false;
}
else if ((temp.length == 8) && ((temp.substring(0,1) != 8) && (temp.substring(0,1) != 9))) {
alert("The mobile number you entered is of an invalid format.")
form.mobile.focus();
return false;
}
return true;
}
function textCounter(field, countfield, maxlimit) {
if (field.value.length > maxlimit) { // if too long...trim it!
field.value = field.value.substring(0, maxlimit);
alert("Sorry! You have exceeded the limit of 160 characters!");
// otherwise, update 'characters left' counter
}
countfield.value = maxlimit - field.value.length;
}
</script>
<script type='text/javascript' src='http://www.starhub.com.sg/navscripts/choose.js'></script>
<META content="Microsoft FrontPage 5.0" name=GENERATOR></HEAD>
<BODY bgColor=#ffffff leftMargin=0 topMargin=0 marginheight="0" marginwidth="0">
<!--Start top nav-->