// JavaScript Document


function isKeyPressed(event){
    if (event.shiftKey==1 && event.altKey==1 && event.metaKey==1){
   		window.location = "../dir/"
    }else if (event.shiftKey==1 && event.altKey==1){
		window.open ('jukebox/songs/myPod.html','',',width=405,height=275');
	}else if (event.shiftKey==1 && event.metaKey==1){
		
    }else if (event.shiftKey==1 ){
      window.location = "http://m.peterhammond.com"  
    }else if (event.metaKey==1 && event.altKey==1){
    
	  
	}else if ( event.altKey==1){
		window.location = "../stuff/resume/"
	  
    }else 
	
	
	{
      ///  history.back()
    }
}
