function spawnWindow(URL)
{
  var top     = 50;
  var left    = 400;
  var width   = 460;
  var height  = 580;
    
  var properties = 'top='+top+',left='+left+',width='+width+',height='+height;
  window.open(URL, "FormRMA", properties);
}