function GetSize(N)
{
  w = 640;
  h = 480;
  switch (N)
  {
     case 3:
     h = 434;
     break;
  }
  return w+','+h;
};