
// Search Box
//function sfocus(e){
//	e.value = (e.value=='Search Tigerpaw')?'':e.value;
//}

//function sblur(e){
//	e.value = (e.value=='')?'Search Tigerpaw':e.value;
//}


function checkEnterKey() 
{ 
if (window.event.keyCode == 13)  // checks whether the SHIFT key is pressed 
    { 
        window.event.cancelBubble = true; 
        window.event.returnValue = false; 
        //alert("Canceled"); 
    } 
} 

function PopupPic(img) { 
        window.open('window.aspx?img=' + img,"","width=100,height=100=,resizable,scrollbars=no,status=0");
    }  
    
function confirm_delete()
{
  if (confirm("Are you sure you want to delete this?")==true)
    return true;
  else
    return false;
} 