function _confirm(url)
{
  var answer = confirm ("Are you sure?")
  if (!answer) {}
  else { window.location = url; }

}

function system_msg(value)
{
	if(value)
	document.getElementById('systemMsg').innerText = document.getElementById('systemMsg').textContent = value;
}


