
function startUpload() {
	$("#upload_form").hide();
	$("#main_button").hide();
	$("#upload_process").show();
	
	return true;
}

function stopUpload(success, msg, number, session) {
	if (success == 1)
		$("#upload_finish").append('<script type="text/javascript">document.location.href = "index.php?action=sms&pid=' + number + session + '";</script>');
	else {
		alert(msg);
		$("#upload_process").hide();
		$("#upload_form").show();
		$("#main_button").show();
	}
	
	$("#upload_name").get(0).value = $msg;
	
	return true;
}

function change_country() {
	var country = $("#select_country option:selected");
	if (country.text() == 'Россия' || country.text() == 'Украина' || country.text() == 'Киргизстан' || country.text() == 'Казахстан' )
		$("#small_prefix").text('1413');
	else $("#small_prefix").text('DX1413');
	var num = eval(country.val());
	$("#small_phone1").text(array[num][0]);
	if (array[num].length == 1)
		$("#small_phone").hide();
	else {
		$("#small_phone").show();
		$("#small_phone3").text(array[num][0]);
		$("#small_phone2").text(array[num][1]);
	}
}