 function myError()
 {
    return true
 }
 function myAlert()
 {
 alert('All images @ 2008 Contagious Concepts Sdn Bhd, unless otherwise noted. All rights reserved. No form of reproduction, including copying or saving of digital image files, or the alteration or manipulation of these image files, is authorized unless accompanied by a written authorization of Contagious Concepts. For information regarding commercial or personal uses, please contact contage_me@contagious-concepts.com');
 }
 function myRightClicked()
 {
   if (event.button==2)
    {
       myAlert();
       return false;
    }
    return true
 }
 function myContextMenu()
 {
    myAlert();
    return false;
 }
 window.onerror = myError
 document.onmousedown=myRightClicked
 document.oncontextmenu=myContextMenu
