
function trapKeypress(e, theKey) 
{
 var iKeyCode = 0;
 if (window.event) iKeyCode = window.event.keyCode
 else if (e) iKeyCode = e.which;
 return (iKeyCode != theKey);
}

 function showtrip(tripcode)
 {
    window.open('TripRouteConductedList.aspx?TripRouteID='+tripcode,'details','toolbar=false,statusbar=false,scrollbars=1,addressbar=false,resize=false,width=1000,height=600,left=10,top=10');
 }
 function PopUp(_Imp)
 {
if(_Imp != null){
var error = _Imp.innerHTML.substring(5,0);
if(error == 'Alert'){
_Imp.style.visibility = 'hidden';

 _Imp.innerHTML = _Imp.innerHTML.replace(/@/g,'\n');  //to replace @ with new line in entire string.
 alert(_Imp.innerHTML);
 _Imp.innerHTML = ' ';}}
 }
function hide() { 
//window.document.body.style.overflow='hidden'; 

 } 
function unhide() { 
//window.document.body.style.overflow=''; 

 }
 function GetProgressWidth(){
 return 60;
 }