//KeyLink - Multiple Keyboard hotkeys by BlueCharm Web Productions (c) http://www.bluecharm.com

if(document.layers) document.captureEvents(Event.KEYPRESS)
document.onkeypress=keyEffect;

var destination1="http://bluecharm.com/cc/contacts.php"

function keyEffect(e){
	key=(document.layers)?e.which:window.event.keyCode
    if(key==99) window.location=destination1;
}

