﻿// JScript File
function Showpopup()
{
  var mywindow  =window.open ("popup.aspx",
"mywindow","status=0,width=300, height=150, menubar=no ,toolbar=no, resizable=no,position=center ");
mywindow.moveTo(350,300);

}

function ShowClinetPage()
{
 opener.location="login.aspx";
}

function ShowAgentButtons()
{
  document.getElementById("AgentsExistDiv").style.display="block";
  document.getElementById("Clientlbl").innerText="Do you have Agent?"
  document.getElementById("ClientDiv").style.display="none";
}
function ShowAgentsPage()
{
  self.close();
 opener.location="Agents.aspx";
}

function ShowClientRegistration()
{
 self.close();
 opener.location="Client1.aspx";
}

