
function ExpWin()
  {
var w;

//docurl = "../experiences/viewexp2_popup.php?topic=19";   //commented by Satish
docurl = "/experiences/viewexp2_popup.php?topic=19";     //added by Satish
w = open(docurl,"Experiences","resizable=Yes,scrollbars=yes,width=550,height=650,status=no,top=20,screenY=5,left=300,screenX=350");
if(w.opener==null) 
w.opener= self;
  }

function PWin(myurl)

{
var w;
myurl="/insurance/" + myurl;   //Line added by Satish
w = open(myurl,"PleaseWait","width=800, height=640,copyhistory=no,location=0,menubar=0,resizable=1,scrollbars=1,status=0,toolbar=0,screenX=100,screenY=75,left=100,top=10");
if(w.opener==null) 
w.opener= self;
  }

function PopWinSmall(myurl)
   {
var w;
w = open(myurl,"PleaseWait","width=500, height=640,copyhistory=no,location=0,menubar=0,resizable=1,scrollbars=1,status=0,toolbar=0,screenX=100,screenY=75,left=100,top=10");
if(w.opener==null) 
w.opener= self;
  }

function SmallWin(myurl)
  {
var w;
w = open(myurl,"BestPrice","resizable=no,width=500,height=400,status=no,top=150,screenY=255,left=300,screenX=350");
if(w.opener==null) 
w.opener= self;
  }

