function checkEnter() {
  try {
    var key = window.event.keyCode;
  } catch(ex){
    var key = e.which;
  }
  if (key == 13) return true;
  return false; 
}
	function popup(theURL,winName,features) { 
			window.open(theURL,winName,features);
	}