

function submitForm(){


var txt = $('k1').value;

	if(txt==null||txt==''){

	}else{
	
		$('f1').submit();
	
	}
	

}

