function jumpJumpLinkurl(form){
location = form.JumpLink.options[form.JumpLink.selectedIndex].value;
return true;
};

function decision(message, url){
if(confirm(message)) location.href = url;
}


function SpellCheck(form_name,field_name) 
{
  
  var textform = self.document[form_name][field_name].value;

  win_pop('');
  
  self.document.hidden_form.form_name.value = form_name; 	//w skritata forma se izpolzwa ime na pole form_name i field_name
  self.document.hidden_form.field_name.value = field_name;  	// koito nqmat nishto obshto s promrnliwite w tazi funkciq
  self.document.hidden_form.first_time_text.value = textform;
  self.document.hidden_form.submit();
  
}

function win_pop(URL)
{	
	winname=window.open(URL,'WIN','width=600,height=380,left=210,top=210,resizable=yes,scrollbars=yes,status=yes'); 
return winname;
}




function handleError() {
	return true;
}

window.onerror = handleError;


