function confirmation(message, location)
{
 var what_to = confirm(message);
 if (what_to == true)
 {
   window.location=location;
 }
 
}

function field_enable(id)
{
	document.getElementById(id).disabled = false;

}
function field_disable(id)
{
	document.getElementById(id).disabled = true;

}


