function SelectIt(What){
if (What.value=="") {
alert('Er is iets fout gegaan, gelieve contact met ons op te nemen.')
}else{
What.focus();
What.select();
if (document.all){
What.createTextRange().execCommand("Copy");
}}}