function savePriority(service,priority){
	$.get('/data.php?operation=savePriority&service='+service+'&priority='+priority,function(data){
		if (data == "1")alert('Сохранено');
		else alert('Ошибка при сохранении');
	});
}

function fsubmit(){	
	str=document.getElementById('email').value;
	if (str!='') {
		if ((/\w+@\w+\.[a-zA-Z]{2,4}/.test(str)) && str.indexOf(';')==-1){
			document.getElementById('sform').submit();
		} else {
			alert('Неправильный формат e-mail адреса');
			return false;
		}
   	} else {
		alert('Введите e-mail адрес');
	} 
}

function testCode()
{
	$.get('/data.php?operation=getCode&code='+$('#code').val(),function(data){
		if (data == "1") document.getElementById('forma').submit();
		else alert('Неправильный код');
	});
}

function selectService(name)
{
	if ($('.regCheckbox:checked').length > 1) {
		var popa = window.open("registerPopup.html", "popup", "screenX="+((screen.width-400)/2)+",screenY="+((screen.height-110)/2)+",width=400,height=110,scrollbars=no,location=no,menubar=no,status=no,titlebar=no,toolbar=no,resizable=no,directories=no");
		popa.focus();
		document.getElementById(name).checked = false;
	}
}
