﻿// fisier ce contine funtii generale 

function OpenWindow(url, left, top, width, height)
{
  window.open(url,'_blank','toolbar=no,location=no,directories=no,status=no,' +
    'scrollbars=no,titlebar=no,resizable=no,copyhistory=no,left=' + left +
    ',top=' + top + ',width=' + width + ',height=' + height);
  return false;
}