var hImagePopup;
function ImagePopup(key)
{		
	hImagePopup = window.open("/annotations.php?type=large&isbn=" +
	key + "", "BookImage", "toolbar=no, location=no, directories=no, status=no, menubar=no, scrollbars=yes, resizable=yes,height=750, width=450, top=100, left=10"); hImagePopup.focus(); 
}    

function checke(e, bname){
var ch;

if(e && e.which){
e = e
ch = e.which
}
else{
e = event
ch = e.keyCode
}

if(ch == 13){
alert('Va rugam confirmati trimiterea datelor apasand pe butonul: ' + bname );
return false
}
else{
return true
}

}

