// selectlogin.js var Hint3Name = ''; function fixspaces(s) { while (s.substr(s.length-1,s.length)==" ") s=s.substr(0,s.length-1); while (s.substr(0,1)==" ") s=s.substr(1,s.length); return(s); } // Заголовок, название скрипта, имя поля с логином function findlogin(title, script, name) { document.all("hint3").innerHTML = '
'+title+'x
'+ '
'+ 'Укажите логин персонажа:
(можно щелкнуть по логину в чате)
'; document.all("hint3").style.visibility = "visible"; document.all("hint3").style.left = 100; document.all("hint3").style.top = 60; document.all(name).focus(); Hint3Name = name; } // Для магии. Заголовок, название скрипта, название магии, номер вещицы в рюкзаке function magicklogin(title, script, magickname, n) { document.all("hint3").innerHTML = '
'+title+'x
'+ '
'+ 'Укажите логин персонажа:
(можно щелкнуть по логину в чате)
'; document.all("hint3").style.visibility = "visible"; document.all("hint3").style.left = 100; document.all("hint3").style.top = 60; document.all("param").focus(); Hint3Name = 'param'; } // Закрывает окно ввода логина function closehint3() { document.all("hint3").style.visibility="hidden"; Hint3Name=''; } // Магия function UseMagick(script, name, extparam, n) { if ((extparam != null)&&(extparam != '')) { var s = prompt(extparam+':', ''); if ((s != null)&&(s != '')) { re = /\%/g; s=s.replace(re, "%25"); re = /\+/g; s=s.replace(re, "%2B"); re = /\#/g; s=s.replace(re, "%23"); re = /\?/g; s=s.replace(re, "%3F"); re = /\&/g; s=s.replace(re, "%26"); window.location.href=script+'?use='+name+'¶m='+s+'&n='+n; } } else { if (confirm('Использовать сейчас?')) { location=script+'?use='+name+'&n='+n; } } }