/*
script written by JavaScript Kit (www.javascriptkit.com)
More free scripts here
*/

if( document.layers )
   document.captureEvents(Event.KEYPRESS)

function backhome(e)
{               //http://www.javascriptkit.com
   var targeturl1="http://www.dimensionalized.com/new.php";        //h
   var targeturl2="http://www.dimensionalized.com/about/index/";  //.//105||73//
   var targeturl3="http://www.dimensionalized.com/index.php";    //0
   var targeturl4="http://www.dimensionalized.com/asitemap.php"; //s
   if(document.layers||document.getElementById&&!document.all)
   {
      if( e.which==104||e.which==72 )
      {
         window.location=targeturl1
      }
      else if( e.which==73 )
      {
         window.location=targeturl2
      }
      else if( e.which==48 )
      {
         window.location=targeturl3
      }
      else if( e.which==115||e.which==83 )
      {
         window.location=targeturl4
      }

   }
   else if( document.all )
   {
      if( event.keyCode==104||event.keyCode==72 )
      {
         window.location=targeturl1
      }
      else if( event.keyCode==73 )
      {
         window.location=targeturl2
      }
      else if( event.keyCode==48 )
      {
         window.location=targeturl3
      }
      else if( event.keyCode==115||event.keyCode==83 )
      {
         window.location=targeturl4
      }

   }
}
document.onkeypress=backhome
