<!--

function OpenWindow(page, width, height) 
{
  attributes = 'toolbar=no,location=0,directories=no,status=yes,';
  attributes += 'menubar=no,scrollbars=yes,resizable=yes';
  
  if (width != null)
    attributes += ',width=' + width;
    
  if (height != null)
    attributes += ',height=' + height;
  
	window.open(page, 'popup', attributes);
}

//-->

