home *** CD-ROM | disk | FTP | other *** search
- function GoToUrl(strPath)
- {
- location.href = strPath
- }
-
- function Focus(objElement)
- {
- objElement.focus();
- }
-
- function ClearElement(objElement, strValue)
- {
- if(objElement.value == strValue)
- {
- objElement.value = '';
- }
- }
-
- function CheckDiacritics(strText)
- {
- var strASCII= 'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ_.-0123456789';
- var intLen= strText.length;
- for (var i= 0; i < intLen; i++)
- {
- if (strASCII.indexOf(strText.charAt(i)) < 0)
- {
- return true;
- }
- }
- return false;
- }
-