// JavaScript Document

function charkeyboard(e){
	if(window.event)
		// IE
		return String.fromCharCode(window.event.keyCode);
	else
		// Netscape
		return String.fromCharCode(e.which);
}


