//   http://www.RobLigtenberg.nl © 2004-2010    //

function SelectIt(What){
if (What.value=="") {
alert('There is nothing to select - refresh this page.')
}else{
What.focus();
What.select();
if (document.all){
What.createTextRange().execCommand("Copy");
alert("The html-code is geselected, paste it with 'Ctrl+V'");
}}}

