// // -------------------------------------------------------------------------- // ---- livesite is licensed software (c)2005 Ian Moody and livesite.biz ---- // -------------------------------------------------------------------------- // ---- UNAUTHORISED USE, DISTRIBUTION AND REVERSE ENGINEERING STRICTLY ----- // ---- PROHIBITED. THIS COPYRIGHT NOTICE MUST NOT BE REMOVED. SEE -------- // ---- YOUR LICENSE AGREEMENT FOR FULL TERMS AND CONDITIONS OF USE. -------- // -------------------------------------------------------------------------- // function ls_rtrim( value ) { var w_space = String.fromCharCode(32); var v_length = value.length; var strTemp = ""; if(v_length < 0) { return""; } var iTemp = v_length -1; while(iTemp > -1) { if(value.charAt(iTemp) == w_space) { } else { strTemp = value.substring(0,iTemp +1); break; } iTemp = iTemp-1; } return strTemp; } function ls_ltrim(value) { var w_space = String.fromCharCode(32); if(v_length < 1) { return""; } var v_length = value.length; var strTemp = ""; var iTemp = 0; while(iTemp < v_length) { if(value.charAt(iTemp) == w_space) { } else { strTemp = value.substring(iTemp,v_length); break; } iTemp = iTemp + 1; } return strTemp; } function ls_trim( value ) { if(value.length < 1) { return ""; } value = ls_rtrim(value); value = ls_ltrim(value); if(value=="") { return ""; } else { return value; } } function ls_checkForm( form_name, elements ) { var count = elements.length; if(count==0) return true; var num_alerts = 0; var message = ''; for(var i=0;i