//==============================================================
//  Focus Login Box
//==============================================================

//==============================================================
//  Delete Function
//==============================================================
function userDel(url,message)
{
  var detStatus=confirm("Are you sure you want to " + message + "?");
  if (detStatus)
  window.location = url;
}
function userConfirm(url,message)
{
  var detStatus2=confirm("Are you sure you want to " + message + "?");
  if (detStatus2)
  window.location = url;
}


//==============================================================
//  SHOW HIDE STUFF
//==============================================================
function showHideDiv(id)
{
	var showhide = document.getElementById(id);
	if (showhide.style.display == 'block') { showhide.style.display = 'none'; }
		else if (showhide.style.display == 'none') { showhide.style.display = 'block'; }
			else if (showhide.style.display == '') { showhide.style.display = 'none'; }
}

function showHideDiv2(id1,id2)
{
	var showhide1 = document.getElementById(id1);
	var showhide2 = document.getElementById(id2);
	if (showhide1.style.display == 'block') { showhide1.style.display = 'none'; showhide2.style.display = 'none'; }
		else if (showhide1.style.display == 'none') { showhide1.style.display = 'block'; showhide2.style.display = 'block'; }
			else if (showhide1.style.display == '') { showhide1.style.display = 'none'; showhide2.style.display = 'none'; }
}

//==============================================================
//  SELECT BOXES
//==============================================================
function showSelectPage(url)
  {
   window.location = url;
  }
  
