<!--

function NNKeyCap(thisOne) 
{
    if (thisOne.modifiers & Event.SHIFT_MASK) 
{
    if (thisOne.which == 42) 
       {
       self.location.href ='admin/default.asp';
       };
}
}
function IEKeyCap() 
{
if (window.event.shiftKey) 
{
    if (window.event.keyCode == 42) 
       {
       self.location.href ='admin/default.asp';
       };
}
}
if (navigator.appName == 'Netscape') {
window.captureEvents(Event.KEYPRESS);
window.onKeyPress = NNKeyCap;
}
//-->
