window.addEvent('keydown', function(event){
    if (event.key == 'enter') document.physDirFrm.submit(); 
});

/*
$j = jQuery.noConflict();
$j(document).ready(function() {

	$j("img").lazyload({         
		placeholder : "/assets/js/grey.gif"
	});

	
	$j('searchpName').keydown(function(event) {
		event.preventDefault();
		document.physDirFrm.submit();
	});
});
*/

