/* function to creat popup window */

function createWnd(path, name, width, height)
{

  style = eval("\'width="+width+",height="+height+",status=no,resizable=yes,location=no,scrollbars=no,toolbar=no\'");
  window.open(path, name, style);

}

