//Enter Button
function clickButton(e, frm){ 
	k = e.keyCode;
	if(k==13) { 
		frm.submit();
		return false;
	} 
} 