// JavaScript Document

function formHandler(form){
var URL = document.frmDropDown.AreasofService.options[document.frmDropDown.AreasofService.selectedIndex].value;
window.location.href = URL;
}

function printDoc(){
window.print();
}

function openWin(URL) {
aWindow=window.open(URL, "TA_Connect", "titlebar=0,resizable=1,scrollbars=yes,width=680,height=600,screenX=30,screenY=10,left = 30,top = 10");
}

function popUpWindow(URLStr, left, top, width, height)

{

  if(popUpWin)

  {

    if(!popUpWin.closed) popUpWin.close();

  }

  popUpWin = open(URLStr, 'popUpWin', 'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,copyhistory=yes,width='+width+',height='+height+',left='+left+', top='+top+',screenX='+left+',screenY='+top+'');

}

function popUpWindow(URLStr, left, top, width, height)

{

  if(popUpWin)

  {

    if(!popUpWin.closed) popUpWin.close();

  }

  var popUpWin = open(URLStr, 'popUpWin', 'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=no,copyhistory=yes,width='+width+',height='+height+',left='+left+', top='+top+',screenX='+left+',screenY='+top+'');

}
