, , URL- CMS. CMS , -ascii URL-. ( ):
function verify_url(txt){
var str=txt.replace(/^\s*|\s*$/g,"");
if (str == '') {
alert("Please enter a URL for this page.");
document.Form1.url.focus();
return false;
}
found=/^[a-zA-Z0-9._\-]*$/.test(str);
if(!found) {
alert("The can only contain letters a thru z, A thru Z, 0 to 9, the dot, the dash and the underscore. No spaces, German specific characters or Chinese characters are allowed. Please remove all punctuation (except for the dot, if you use it), and convert all non complying characters. In German, you may convert umlaut 'o' to 'oe', or in Chinese, you may use the 'pinyin' version of the Chinese characters.");
document.Form1.url.focus();
}
return found;
}