function sayit()
{
  if (document.getSelection) // older Mozilla versions
  {
             var selectedString = document.getSelection();
  }
  else if (document.all) // MSIE 4+
  {
             var selectedString = document.selection.createRange().text;
  }
  else if (window.getSelection) // recent Mozilla versions
  {
             var selectedString = window.getSelection();
  }
  document.rs_form.rstext.value = selectedString;
  if (window.location.href)
  {
             document.rs_form.url.value = window.location.href;
  }
  else if (document.location.href)
  {
             document.rs_form.url.value = document.location.href;
  }
}

function copyselected(){
  setTimeout('sayit()',50);
  return true;
}

function zetButton(idvalue){
  var txt = "";
  var inv = document.getElementById(idvalue) 
  txt= txt + "<a href = 'http://asp.readspeaker.net/cgi-bin/gfndsnlbbrsone?customerid=1003480&url=";
  txt= txt + location.href;
//  if ( inv.value # "" ) { 
//    txt=txt + "&id=" + inv ;
//  } 
  txt = txt + "' class='ISI_REMOVE' accesskey='L' target='_blank'><img src='images/sayit_medium.gif' "
  txt = txt + "alt='Met een klik op deze button wordt de hele pagina aan u voorgelezen!' width='78' height='34' border='0'></a>"
  document.write (txt);
}

function zetButton2(){
  var txt=''; 
  txt= txt+"<form name='rs_form' action='http://asp.readspeaker.net/cgi-bin/gfndsnlbbrsone" //&url="
  //txt= txt +  location.href + "&id=1"
  txt= txt+"' method='get' target='rs'>";
  txt= txt+"<input type='hidden' name='rstext'>";
  txt= txt+"<p>&nbsp; <input type='hidden' name='url'value='http://www.fovig.nl/nieuws/index.htm'><input type='hidden' name='customerid' value='1003480'>";
  txt= txt+"<input type='hidden' name='lang' value='nl'>";
  txt= txt+"<input title='Klik hierop en Readspeaker leest heel de pagina of alleen de geselecteerde tekst voor' type='image' alt='SayIt' src='images/sayit_medium.gif'"; 
  txt= txt+"accesskey='L' width='78' height='34' style='position:bottom left;' target='_blank'>";
  txt= txt+"</p>";
  txt= txt+"<p><font face='Verdana' size='1'>selectie</font></p>";
  txt= txt+"</form>";
//alert (txt); 
  document.write (txt);
}

function zetButtonAll(){
  var txt = "" 
  txt=txt+"<a href='http://asp.readspeaker.net/cgi-bin/gfndsnlbbrsone?customerid=1003480&url=http://www.fovig.nl/nieuws/index.htm&id=1' class='ISI_REMOVE' accesskey='L' target='rs' >";
  txt = txt + "<img border='0' src='images/spkr.gif' width='15' height='15' alt = 'Lees de hele pagina voor (id=1)'></a> ";
  document.write (txt);
}

