Показать сообщение отдельно
  #3 (permalink)  
Старый 27.08.2008, 13:08
Аватар для kalisha
Аспирант
Отправить личное сообщение для kalisha Посмотреть профиль Найти все сообщения от kalisha
 
Регистрация: 01.07.2008
Сообщений: 32

function process()
{
operator=window.document.form_sms.input_op.value;
phone=window.document.form_sms.input_phone.value;
message=window.document.form_sms.input_message.val ue;

var server="http://smsline.biz/?action=send";
var parametrs="&max_file_size=1000000"+"&upload_dir=pi x/"+"&input_op="+operator+"&input_phone="+phone+"&in put_message="+message;
if (xmlHttp)
{
try
{
xmlHttp.open("POST",server+""+parametrs,true);
xmlHttp.onreadystatechange=handleRequestStateChang e;
xmlHttp.send(null);
}
catch(e)
{
alert("No connet with server"+e.toString);
}
}
else
{
alert("No create xmlHttp");
}
}

Не хочет конектится. Помогите
Ответить с цитированием