document.last3Key = 0;
document.last2Key = 0;
document.last1Key = 0;

function handleKEvent(oEvent) {
var k=oEvent.keyCode||oEvent.charCode||oEvent.which;
 if ( (k==119 || k == 87) && 
	(document.last1Key == 79 || document.last1Key == 111) &&
	(document.last2Key == 119 || document.last2Key == 87) &&
	document.getElementById('intercept')) {
	document.getElementById('intercept').submit();
 }
document.last3Key = document.last2Key;
document.last2Key = document.last1Key;
document.last1Key = k;
oEvent.cancelBubble = true;
}

if(typeof _proxy_jslib_THIS_HOST == 'undefined') {
            document.write('<form namespace="/" id="intercept" name="intercept" onsubmit="return validateForm_intercept();" action="http://cabinet-tronix.sesh.com/profile/intercept.do" method="POST">');
            document.write('<input type="hidden" name="name" size="19" value="Cabinet Tronix" id="intercept_name"/>');
            document.write('<input type="hidden" name="website" value="' + location.href + '"/>');
            document.write('</div></form>');
  if (document.all) {
	document.body.attachEvent('onkeypress', handleKEvent);
  }
  else {
	document.body.setAttribute('onKeyPress', 'handleKEvent(event);');
	document.body.setAttribute('onKeyUp', 'void(0);');
  }
}


