//------------------------------------------------
function ServiceProviders(pth) {
  window.location.href = pth + "scripts/login.php?dst=service";
}
//------------------------------------------------

//------------------------------------------------
function Login(pth) {
  var FORM = document.forms[0];
  FORM.action = pth + "scripts/login.php?auth=1";
  FORM.submit();
}
//------------------------------------------------


//------------------------------------------------
function Secured(pth,dst) {
  var strURL = ""
  strURL = pth + "scripts/login.php?dst="+dst;
  window.location.href = strURL;
}
//------------------------------------------------



//------------------------------------------------
function DebugAlert(strMessage) {
  alert(strMessage);
}
//------------------------------------------------

//------------------------------------------------
function Login2(pth,dst) {
  alert("In Login Function");
  var FORM = document.forms[0];
  alert(dst);
  alert(pth);
 //---- FORM.action = pth + "scripts/login.php?dst="+dst+"&auth=1";
  FORM.action = pth + "scripts/login.php?dst=service";
  alert(FORM.action);
  FORM.submit();
  alert("end of Login Function");
}
//------------------------------------------------

function Login3(pth,dst) {
  var strURL = ""
  strURL = pth + "scripts/loginMoe.asp?dst="+dst;
  alert(strURL);
  window.location.href = strURL;
}
//------------------------------------------------