/**
 * pip.js
 * Contains the Javascript that is used in on all stop simulator frames.
 * (c) Copyright Mistral Internet 2003, All rights reserved.
 */

// Disable right clicks 
if (document.all) {
	//IE 5.+
	document.onkeydown =
		function () {
			//alert("KC: "+window.event.keyCode);
			if (window.event.keyCode == 116) {
				window.event.keyCode = 0;
				window.event.cancelBubble = true;
				window.event.returnValue = false;
				
				parent.ss_table.location.href=parent.ss_table.location.href;
				
				return false;
			}
		};
}
