function isEmpty(str,strError,obj){
	if (str.length == 0){
		alert(strError);
		obj.focus();
		return false;
	}		
	return true;
}
