
function ClicktoCall(id){
  var w=370;
  var h=450;
  var leftPos=(screen.width)?(screen.width-w)/2:100;
  var topPos=(screen.height)?(screen.height-h)/2:100;
  var settings='width='+w+',height='+h+',top='+topPos+',left='+leftPos+',location=no,directories=no,menubar=no,toolbar=no,status=no,scrollbars=no,resizable=no,dependent=no';
  var sUrl='http://www.nascomms.com/ccConnect/Dialer.aspx?clientId='+id;
  var ccWindow=window.open(sUrl,'ClickCalling',settings);
  ccWindow.focus();
}
