function keyWhat(e){
   if (navigator.appName == 'Microsoft Internet Explorer'){
                 //For shift, ctrl and alt keys
     if(event.keyCode == 17 ){ 
          alert("©2008 FoodEU.com");
                     return false;
                 }
   }
}//end of function
document.onkeydown=keyWhat;
