var where = '';
// 'http://www.webmts.com/rating/';

function get_where()
{
  where = prompt('What Site?', where);
  return(where? where: where='');
}

function go_nav(which)
{
  var name = which.name;
  var page = open(where+'Display_Frame.htm',name,
    'height='+Math.min(600,screen.availHeight-25)+
    ',width='+Math.min(750,screen.availWidth-10)+
    ',scrollbars');
  if (screen.availHeight<625||screen.availWidth<760)
    page.moveTo(0,0);
}

document.write(
  '<h2>Demo Options</h2>',
  '<hr align="left" width="40%">\n',
  '<form>\n',
  '<input type="button"\n',
  '  value="     Special Event     "\n',
  '  name="RIC__Special_Event"\n',
  '  onClick="go_nav(this)">\n',
  '</input><br><br>\n',
  '<input type="button"\n',
  '  value="     DP1 Domicile     "\n',
  '  name="Abram__DP1_Domicile"\n',
  '  onClick="go_nav(this)">\n',
  '</input><br><br>\n',
  '<input type="button"\n',
  '  value="     DP3 Domicile     "\n',
  '  name="Abram__DP3_Domicile"\n',
  '  onClick="go_nav(this)">\n',
  '</input><br><br>\n',
  '<input type="button"\n',
  '  value="Personal Umbrella"\n',
  '  name="Topa__Umbrella"\n',
  '  onClick="go_nav(this)">\n',
  '</input><br><br>\n',
  '<input type="button"\n',
  '  value=" Personal Liability  "\n',
  '  name="Topa__CP_liability"\n',
  '  onClick="go_nav(this)">\n',
  '</input><br><br>\n',
  '</form>');
