//   http://www.RobLigtenberg.nl © 2004-2010    //

function SelectIt(What){
if (What.value=="") {
alert('Er is niets te selecteren - vernieuw deze pagina.')
}else{
What.focus();
What.select();
if (document.all){
What.createTextRange().execCommand("Copy");
alert("De html-code is geselecteerd, plakken met 'Ctrl+V'");
}}}

